About

This page captures simple demonstrations of some of capabilities of RRAP to Registry Activities, Entities and Actors. If you select the 'Binder' button above, a Jupyter Notebook will be lauched that you can use to further explore these examples. You can change parameters and see results to further expand your understand of RRAP Registry.

With RRAP-IS Registry system can be queried to find all 'Activities', 'Entities' and 'Actors' associated with particular 'Outputs', 'Inputs', or 'Reef Interventions'

Please read documenation ### to understand terms used in this notebook and the future systems

Import general dependencies

import requests
import os
import sys
import json
from json2html import *
from bs4 import BeautifulSoup
import pandas as pd
from IPython.display import IFrame, display, HTML, JSON, Markdown
from mdsisclienttools.auth.TokenManager import DeviceFlowManager

import warnings
warnings.filterwarnings(action='once')

Define global variables, base urls

Note the use structure of the base url, pointing to test servers. If you wish to test your code first, please use the test servers (listed below). Note that these may not retain data and could be down at the time of testing.

Remove testing from the url to use the production urls. Please be careful using production urls, filling the system with test data will require considerable effort to cleanup.

data_api = "https://data-api.testing.rrap-is.com"
registry_api = "https://registry-api.testing.rrap-is.com"
prov_api = "https://prov-api.testing.rrap-is.com"
auth_server = "https://auth.dev.rrap-is.com/auth/realms/rrap"
# garbage = "https://frogs.are.green"
base_urls = {'data_api': data_api, 'registry_api': registry_api, 'prov_api': prov_api, 'auth_server': auth_server}#, 'garbage': garbage}
display('Checking base urls')
# [display(Testing':',value) for key, value in base_urls.items()]
for key, url in base_urls.items():
    try:
        print(f'Testing - {url}', end="")
        r = requests.get(url)
        r.raise_for_status()
        print(f' - Passed')
    except requests.exceptions.HTTPError as err:
        print(f' - Fail')
        raise SystemExit(err)
    except requests.exceptions.RequestException as e:
        # catastrophic error. bail.
        print(f' - Fail')
        raise SystemExit(e)
'Checking base urls'
Testing - https://data-api.testing.rrap-is.com - Passed
Testing - https://registry-api.testing.rrap-is.com - Passed
Testing - https://prov-api.testing.rrap-is.com - Passed
Testing - https://auth.dev.rrap-is.com/auth/realms/rrap - Passed

Setup tokens using device authorisation flow against keycloak server

This could result in a browser window being opened if you don't have valid tokens cached in local storage.

local_token_storage = ".tokens.json"

token_manager = DeviceFlowManager(
    stage="TEST",
    keycloak_endpoint=auth_server,
    local_storage_location=local_token_storage
)
Attempting to generate authorisation tokens.

Looking for existing tokens in local storage.

Validating found tokens

Trying to use found tokens to refresh the access token.

Token refresh successful.

Helper functions

Return to Top

def wrap_html_table(data):
    soup = BeautifulSoup(data)

    ul_tag = soup.find("table")
    div_tag = soup.new_tag("div")
    div_tag['style'] = "width: auto; height: 400px; overflow-y: auto; background-color: #F1F3F4"
    ul_tag.wrap(div_tag)
    new_tag = soup.new_tag("details")
    div_tag.wrap(new_tag)
    
    tag = soup.new_tag("summary")
    tag.string = "Results"
    soup.div.insert_after(tag)

    return soup.prettify()

Endpoint Documentation

Endpoint documentation can be found by appending either /docs or /redoc on the end a base URL.

For example:

Then select from the menu an endpoint function call e.g. /check-access/check-general-access

Then append the function call onto the base url e.g. https://registry-api.testing.rrap-is.com/check-access/check-general-access

Return to Top

Demonstrations

Dataset Registry APIs

Dataset Registry - Redoc FastAPI

List all datasets

Return to Top

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/items/list-all-datasets"
endpoint = data_api + postfix

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.get(endpoint, auth=auth())

json_obj_in_html = json2html.convert( response.json()['registry_items'])
HTML( wrap_html_table(json_obj_in_html))
handle collection_format rocrate_metadata s3 created_time updated_time
10378.1/1687269
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687269
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687269/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687269/
2022-06-28T07:37:45.631493 2022-06-28T07:37:45.935384
10378.1/1688965
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688965
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688965/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688965/
2022-08-15T04:37:58.552489 2022-08-15T04:37:58.552489
10378.1/1689073
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689073
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689073/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689073/
2022-08-15T05:02:07.620589 2022-08-15T05:02:07.620589
10378.1/1688944
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688944
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688944/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688944/
2022-08-15T04:36:18.313912 2022-08-15T04:36:18.313912
10378.1/1689422
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689422
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689422/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689422/
2022-08-15T07:06:50.355791 2022-08-15T07:06:50.355791
10378.1/1688332
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688332
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688332/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688332/
2022-08-11T06:59:38.676645 2022-08-11T06:59:38.676645
10378.1/1688338
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688338
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688338/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688338/
2022-08-12T04:50:39.879126 2022-08-12T04:50:39.879126
10378.1/1689424
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689424
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689424/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689424/
2022-08-15T07:07:01.167205 2022-08-15T07:07:01.167205
10378.1/1689095
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689095
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689095/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689095/
2022-08-15T05:04:01.356572 2022-08-15T05:04:01.356572
10378.1/1689709
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689709
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689709/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689709/
2022-08-16T01:46:27.747687 2022-08-16T01:46:27.747687
10378.1/1689501
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689501
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689501/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689501/
2022-08-15T07:12:48.069960 2022-08-15T07:12:48.069960
10378.1/1688907
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688907
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688907/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688907/
2022-08-15T04:33:37.790243 2022-08-15T04:33:37.790243
10378.1/1688335
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688335
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688335/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688335/
2022-08-12T04:18:43.334959 2022-08-12T04:18:43.334959
10378.1/1689428
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689428
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689428/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689428/
2022-08-15T07:07:18.619613 2022-08-15T07:07:18.619613
10378.1/1689580
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689580
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689580/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689580/
2022-08-16T01:25:10.670373 2022-08-16T01:25:10.670373
10378.1/1689512
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689512
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689512/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689512/
2022-08-15T07:13:36.329619 2022-08-15T07:13:36.329619
10378.1/1688853
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688853
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688853/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688853/
2022-08-15T04:29:37.878965 2022-08-15T04:29:37.878965
10378.1/1688262
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688262
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688262/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688262/
2022-08-09T10:23:53.795654 2022-08-09T10:23:53.795654
10378.1/1688661
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688661
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688661/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688661/
2022-08-15T02:47:35.021528 2022-08-15T02:47:35.021528
10378.1/1687901
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687901
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687901/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687901/
2022-08-03T04:23:47.253617 2022-08-03T04:23:47.253617
10378.1/1688595
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688595
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688595/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688595/
2022-08-12T06:27:20.324029 2022-08-12T06:27:20.324029
10378.1/1688909
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688909
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688909/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688909/
2022-08-15T04:33:43.984811 2022-08-15T04:33:43.984811
10378.1/1688477
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688469
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688469
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688477
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688477/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688477/
2022-08-12T06:17:10.772055 2022-08-12T06:17:10.772055
10378.1/1688582
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688582
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688582/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688582/
2022-08-12T06:26:15.343465 2022-08-12T06:26:15.343465
10378.1/1689518
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689518
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689518/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689518/
2022-08-15T07:14:06.766091 2022-08-15T07:14:06.766091
10378.1/1690407
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690407
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690407/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690407/
2022-09-01T01:47:38.183571 2022-09-01T01:47:38.183571
10378.1/1687201
author
name Peter Baker
email peter.baker122@csiro.au
orcid https://orcid.org/0000-0002-2237-0091
organisation
name Australian National University
ror https://ror.org/019wvm592
dataset_info
name Test
description Test
publisher
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
created_date 2022-06-24
published_date 2022-06-24
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords None
version None
@graph
  • datePublished 2022-06-24
    dateCreated 2022-06-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-2237-0091
    about
    @id ./
    dateModified 2022-06-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-2237-0091
    @type
    • Person
    • ContactPoint
    email peter.baker122@csiro.au
    worksFor
    @id https://ror.org/019wvm592
  • name Australian National University
    @type Organization
    @id https://ror.org/019wvm592
  • datePublished 2022-06-24
    identifier 10378.1/1687201
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2022-06-24
    @type Dataset
    name Test
    publisher
    @id https://ror.org/03qn8fb07
    description Test
    @id ./
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687201/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687201/
2022-06-24T01:05:44.738974 2022-06-24T01:27:22.748449
10378.1/1689153
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689153
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689153/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689153/
2022-08-15T05:09:19.090807 2022-08-15T05:09:19.090807
10378.1/1688918
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688918
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688918/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688918/
2022-08-15T04:34:25.044964 2022-08-15T04:34:25.044964
10378.1/1688773
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688742
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688742
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688773
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688773/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688773/
2022-08-15T03:04:06.134609 2022-08-15T03:04:06.134609
10378.1/1689208
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689208
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689208/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689208/
2022-08-15T05:13:39.388186 2022-08-15T05:13:39.388186
10378.1/1687286
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687286
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687286/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687286/
2022-06-30T06:02:45.528431 2022-06-30T06:02:45.528431
10378.1/1688303
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688303
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688303/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688303/
2022-08-10T04:47:29.760747 2022-08-10T04:47:29.760747
10378.1/1689284
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689284
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689284/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689284/
2022-08-15T05:47:39.245558 2022-08-15T05:47:39.245558
10378.1/1689617
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689617
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689617/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689617/
2022-08-16T01:28:08.752905 2022-08-16T01:28:08.752905
10378.1/1689319
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689319
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689319/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689319/
2022-08-15T05:49:54.765907 2022-08-15T05:49:54.765907
10378.1/1687927
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687927
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687927/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687927/
2022-08-03T06:51:01.670469 2022-08-03T06:51:01.670469
10378.1/1688797
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688797
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688797/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688797/
2022-08-15T04:19:07.347454 2022-08-15T04:19:07.347454
10378.1/1689171
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689171
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689171/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689171/
2022-08-15T05:10:53.853042 2022-08-15T05:10:53.853042
10378.1/1689045
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689045
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689045/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689045/
2022-08-15T04:44:07.637610 2022-08-15T04:44:07.637610
10378.1/1690481
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690430
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690430
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690481
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690481/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690481/
2022-09-01T01:56:17.409045 2022-09-01T01:56:17.409045
10378.1/1689126
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689126
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689126/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689126/
2022-08-15T05:06:44.745933 2022-08-15T05:06:44.745933
10378.1/1689397
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1689397
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689397/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689397/
2022-08-15T07:02:04.403404 2022-08-15T07:02:04.690979
10378.1/1687280
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687280
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687280/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687280/
2022-06-30T01:18:34.749681 2022-06-30T01:18:34.749681
10378.1/1687864
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687864
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687864/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687864/
2022-08-02T05:37:02.710267 2022-08-02T05:37:02.710267
10378.1/1687968
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687968
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687968/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687968/
2022-08-04T00:16:37.874640 2022-08-04T00:16:37.874640
10378.1/1688476
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688462
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688462
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688476
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688476/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688476/
2022-08-12T06:17:07.640463 2022-08-12T06:17:07.640463
10378.1/1688921
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688921
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688921/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688921/
2022-08-15T04:34:37.851726 2022-08-15T04:34:37.851726
10378.1/1688701
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688701
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688701/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688701/
2022-08-15T02:53:22.631971 2022-08-15T02:53:22.631971
10378.1/1688940
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688940
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688940/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688940/
2022-08-15T04:36:00.179740 2022-08-15T04:36:00.179740
10378.1/1689681
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689681
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689681/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689681/
2022-08-16T01:33:09.184845 2022-08-16T01:33:09.184845
10378.1/1686902
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-08
    dateCreated 2022-06-08
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-08
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1686902
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686902/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686902/
2022-06-08T05:29:50.023825 2022-06-08T05:29:50.328636
10378.1/1689146
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689146
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689146/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689146/
2022-08-15T05:08:36.121433 2022-08-15T05:08:36.121433
10378.1/1688980
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688980
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688980/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688980/
2022-08-15T04:39:00.404781 2022-08-15T04:39:00.404781
10378.1/1689283
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689283
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689283/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689283/
2022-08-15T05:47:36.128515 2022-08-15T05:47:36.128515
10378.1/1688957
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688957
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688957/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688957/
2022-08-15T04:37:23.048054 2022-08-15T04:37:23.048054
10378.1/1688722
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688722
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688722/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688722/
2022-08-15T02:54:58.937438 2022-08-15T02:54:58.937438
10378.1/1689565
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689565
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689565/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689565/
2022-08-16T01:24:22.425427 2022-08-16T01:24:22.425427
10378.1/1688064
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688064
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688064/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688064/
2022-08-05T00:10:57.918902 2022-08-05T00:10:58.207864
10378.1/1687984
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687984
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687984/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687984/
2022-08-04T00:51:31.275319 2022-08-04T00:51:31.275319
10378.1/1689737
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689737
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689737/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689737/
2022-08-16T01:48:31.517912 2022-08-16T01:48:31.517912
10378.1/1688259
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688259
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688259/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688259/
2022-08-09T10:06:52.529681 2022-08-09T10:06:52.529681
10378.1/1689024
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689024
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689024/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689024/
2022-08-15T04:42:25.152129 2022-08-15T04:42:25.152129
10378.1/1688554
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688554
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688554/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688554/
2022-08-12T06:24:13.524632 2022-08-12T06:24:13.524632
10378.1/1689447
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689447
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689447/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689447/
2022-08-15T07:08:51.190181 2022-08-15T07:08:51.190181
10378.1/1689785
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1689785
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689785/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689785/
2022-08-18T01:59:16.106924 2022-08-18T01:59:16.426399
10378.1/1689182
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689182
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689182/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689182/
2022-08-15T05:11:41.731970 2022-08-15T05:11:41.731970
10378.1/1689069
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689069
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689069/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689069/
2022-08-15T05:01:55.009681 2022-08-15T05:01:55.009681
10378.1/1688333
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688333
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688333/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688333/
2022-08-11T06:59:42.027070 2022-08-11T06:59:42.027070
10378.1/1687368
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-07-07
    dateCreated 2022-07-07
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-07-07
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687368
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687368/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687368/
2022-07-07T06:33:47.013820 2022-07-07T06:33:47.013820
10378.1/1689042
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689042
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689042/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689042/
2022-08-15T04:43:54.849027 2022-08-15T04:43:54.849027
10378.1/1689312
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689312
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689312/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689312/
2022-08-15T05:49:22.559521 2022-08-15T05:49:22.559521
10378.1/1690372
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690372
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690372/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690372/
2022-09-01T01:44:40.782607 2022-09-01T01:44:40.782607
10378.1/1686823
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1686823
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686823/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686823/
2022-06-06T00:12:55.806071 2022-06-06T00:12:55.806071
10378.1/1688845
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688845
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688845/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688845/
2022-08-15T04:29:05.351580 2022-08-15T04:29:05.351580
10378.1/1688325
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688325
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688325/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688325/
2022-08-11T05:40:09.276394 2022-08-11T05:40:09.276394
10378.1/1688402
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688385
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688385
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688402
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688402/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688402/
2022-08-12T06:02:22.489269 2022-08-12T06:02:22.489269
10378.1/1688612
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688612
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688612/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688612/
2022-08-12T06:44:18.110979 2022-08-12T06:44:18.110979
10378.1/1688911
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688911
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688911/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688911/
2022-08-15T04:33:50.254514 2022-08-15T04:33:50.254514
10378.1/1689504
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689504
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689504/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689504/
2022-08-15T07:13:02.336602 2022-08-15T07:13:02.336602
10378.1/1688687
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688687
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688687/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688687/
2022-08-15T02:52:27.062350 2022-08-15T02:52:27.062350
10378.1/1689360
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689360
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689360/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689360/
2022-08-15T05:53:03.157284 2022-08-15T05:53:03.157284
10378.1/1689603
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689603
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689603/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689603/
2022-08-16T01:27:01.617788 2022-08-16T01:27:01.617788
10378.1/1690435
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690435
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690435/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690435/
2022-09-01T01:53:04.872328 2022-09-01T01:53:04.872328
10378.1/1689514
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689514
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689514/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689514/
2022-08-15T07:13:46.630952 2022-08-15T07:13:46.630952
10378.1/1689576
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689576
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689576/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689576/
2022-08-16T01:24:57.589495 2022-08-16T01:24:57.589495
10378.1/1689776
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1689776
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689776/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689776/
2022-08-18T00:58:18.415658 2022-08-18T00:58:18.415658
10378.1/1688323
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688323
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688323/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688323/
2022-08-11T03:54:27.257782 2022-08-11T03:54:27.257782
10378.1/1689631
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689631
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689631/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689631/
2022-08-16T01:29:15.258526 2022-08-16T01:29:15.258526
10378.1/1689448
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689448
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689448/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689448/
2022-08-15T07:08:54.248618 2022-08-15T07:08:54.248618
10378.1/1689556
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689556
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689556/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689556/
2022-08-16T01:23:52.687878 2022-08-16T01:23:52.687878
10378.1/1690301
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-31
    dateCreated 2022-08-31
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-31
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1690301
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690301/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690301/
2022-08-31T05:20:20.412301 2022-08-31T05:20:20.412301
10378.1/1687876
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687876
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687876/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687876/
2022-08-02T07:15:43.439441 2022-08-02T07:15:43.439441
10378.1/1689178
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689178
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689178/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689178/
2022-08-15T05:11:26.118748 2022-08-15T05:11:26.118748
10378.1/1687241
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687241
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687241/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687241/
2022-06-27T07:04:24.068429 2022-06-27T07:04:24.068429
10378.1/1689058
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689058
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689058/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689058/
2022-08-15T04:45:14.274617 2022-08-15T04:45:14.274617
10378.1/1689298
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689298
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689298/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689298/
2022-08-15T05:48:23.673578 2022-08-15T05:48:23.673578
10378.1/1687288
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-07-01
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687288
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687288/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687288/
2022-06-30T06:02:53.875475 2022-07-01T00:47:50.116958
10378.1/1689436
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689436
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689436/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689436/
2022-08-15T07:07:58.779571 2022-08-15T07:07:58.779571
10378.1/1688902
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688902
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688902/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688902/
2022-08-15T04:33:18.815206 2022-08-15T04:33:18.815206
10378.1/1688297
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688297
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688297/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688297/
2022-08-10T04:24:59.937928 2022-08-10T04:24:59.937928
10378.1/1689108
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689108
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689108/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689108/
2022-08-15T05:05:15.545185 2022-08-15T05:05:15.545185
10378.1/1689030
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689030
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689030/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689030/
2022-08-15T04:42:54.132779 2022-08-15T04:42:54.132779
10378.1/1689473
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689473
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689473/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689473/
2022-08-15T07:10:45.233054 2022-08-15T07:10:45.233054
10378.1/1688891
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688891
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688891/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688891/
2022-08-15T04:32:25.945729 2022-08-15T04:32:25.945729
10378.1/1689659
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689572
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689572
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689659
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689659/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689659/
2022-08-16T01:31:27.530146 2022-08-16T01:31:27.530146
10378.1/1687863
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687863
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687863/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687863/
2022-08-02T05:36:59.449936 2022-08-02T05:36:59.449936
10378.1/1690403
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690403
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690403/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690403/
2022-09-01T01:47:25.905600 2022-09-01T01:47:25.905600
10378.1/1689587
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689587
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689587/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689587/
2022-08-16T01:25:39.022124 2022-08-16T01:25:39.022124
10378.1/1688789
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688789
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688789/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688789/
2022-08-15T04:18:42.302234 2022-08-15T04:18:42.302234
10378.1/1687236
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687236
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687236/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687236/
2022-06-27T04:54:22.842609 2022-06-27T04:54:22.842609
10378.1/1689583
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689583
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689583/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689583/
2022-08-16T01:25:20.419842 2022-08-16T01:25:20.419842
10378.1/1688454
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688443
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688443
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688454
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688454/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688454/
2022-08-12T06:14:51.517439 2022-08-12T06:14:51.517439
10378.1/1689247
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689247
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689247/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689247/
2022-08-15T05:16:32.321240 2022-08-15T05:16:32.321240
10378.1/1688704
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688704
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688704/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688704/
2022-08-15T02:53:37.687368 2022-08-15T02:53:37.687368
10378.1/1687260
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687260
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687260/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687260/
2022-06-28T03:58:06.170439 2022-06-28T03:58:06.170439
10378.1/1690248
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690248
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690248/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690248/
2022-08-30T06:27:25.741335 2022-08-30T06:27:26.022346
10378.1/1687287
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687287
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687287/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687287/
2022-06-30T06:02:49.955032 2022-06-30T06:02:49.955032
10378.1/1689451
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689451
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689451/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689451/
2022-08-15T07:09:08.190361 2022-08-15T07:09:08.190361
10378.1/1689116
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689116
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689116/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689116/
2022-08-15T05:05:55.125346 2022-08-15T05:05:55.125346
10378.1/1687267
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687267
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687267/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687267/
2022-06-28T07:37:36.754998 2022-06-28T07:37:36.754998
10378.1/1688981
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688981
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688981/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688981/
2022-08-15T04:39:03.489999 2022-08-15T04:39:03.489999
10378.1/1688227
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688227
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688227/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688227/
2022-08-09T02:31:27.896268 2022-08-09T02:31:27.896268
10378.1/1689009
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689009
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689009/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689009/
2022-08-15T04:41:17.492668 2022-08-15T04:41:17.492668
10378.1/1689433
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689433
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689433/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689433/
2022-08-15T07:07:45.610616 2022-08-15T07:07:45.610616
10378.1/1688863
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688863
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688863/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688863/
2022-08-15T04:30:18.060090 2022-08-15T04:30:18.060090
10378.1/1689113
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689113
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689113/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689113/
2022-08-15T05:05:40.675177 2022-08-15T05:05:40.675177
10378.1/1690230
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690230
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690230/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690230/
2022-08-30T01:33:01.352987 2022-08-30T01:33:01.643642
10378.1/1687875
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687875
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687875/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687875/
2022-08-02T07:15:40.122553 2022-08-02T07:15:40.122553
10378.1/1689453
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689453
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689453/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689453/
2022-08-15T07:09:14.923744 2022-08-15T07:09:14.923744
10378.1/1688769
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688742
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688742
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688769
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688769/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688769/
2022-08-15T03:03:45.170780 2022-08-15T03:03:45.170780
10378.1/1687206
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-24
    dateCreated 2022-06-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687206
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687206/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687206/
2022-06-24T02:16:00.507929 2022-06-24T02:16:00.507929
10378.1/1689593
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689593
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689593/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689593/
2022-08-16T01:26:14.064575 2022-08-16T01:26:14.064575
10378.1/1688834
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688834
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688834/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688834/
2022-08-15T04:28:14.789496 2022-08-15T04:28:14.789496
10378.1/1689481
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689481
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689481/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689481/
2022-08-15T07:11:21.942178 2022-08-15T07:11:21.942178
10378.1/1689489
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689489
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689489/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689489/
2022-08-15T07:11:57.330731 2022-08-15T07:11:57.330731
10378.1/1687242
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687242
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687242/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687242/
2022-06-27T07:04:28.568891 2022-06-28T01:30:07.357489
10378.1/1690458
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690430
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690430
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690458
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690458/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690458/
2022-09-01T01:54:33.460329 2022-09-01T01:54:33.460329
10378.1/1686858
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1686858
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686858/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686858/
2022-06-06T03:06:35.568399 2022-06-06T03:06:35.874247
10378.1/1690437
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690437
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690437/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690437/
2022-09-01T01:53:11.014614 2022-09-01T01:53:11.014614
10378.1/1688599
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688599
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688599/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688599/
2022-08-12T06:27:38.500515 2022-08-12T06:27:38.500515
10378.1/1688585
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688585
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688585/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688585/
2022-08-12T06:26:30.524481 2022-08-12T06:26:30.524481
10378.1/1688608
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688608
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688608/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688608/
2022-08-12T06:36:26.309341 2022-08-12T06:36:26.309341
10378.1/1689193
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689193
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689193/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689193/
2022-08-15T05:12:30.653768 2022-08-15T05:12:30.653768
10378.1/1688090
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688090
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688090/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688090/
2022-08-05T07:32:57.702819 2022-08-05T07:32:57.702819
10378.1/1689472
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689472
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689472/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689472/
2022-08-15T07:10:41.653594 2022-08-15T07:10:41.653594
10378.1/1689677
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689677
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689677/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689677/
2022-08-16T01:32:52.483398 2022-08-16T01:32:52.483398
10378.1/1687250
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687250
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687250/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687250/
2022-06-28T02:13:33.788949 2022-06-28T02:28:59.521436
10378.1/1688670
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688670
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688670/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688670/
2022-08-15T02:48:05.385192 2022-08-15T02:48:05.385192
10378.1/1688874
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688874
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688874/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688874/
2022-08-15T04:31:04.128774 2022-08-15T04:31:04.128774
10378.1/1690493
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690493
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690493/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690493/
2022-09-01T01:58:50.891049 2022-09-01T01:58:51.184438
10378.1/1689235
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689235
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689235/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689235/
2022-08-15T05:15:40.475710 2022-08-15T05:15:40.475710
10378.1/1688916
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688916
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688916/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688916/
2022-08-15T04:34:14.469010 2022-08-15T04:34:14.469010
10378.1/1686982
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1686982
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686982/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686982/
2022-06-17T05:46:38.799226 2022-06-17T05:46:39.114905
10378.1/1688522
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688484
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688484
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688522
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688522/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688522/
2022-08-12T06:20:22.737205 2022-08-12T06:20:22.737205
10378.1/1689100
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689100
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689100/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689100/
2022-08-15T05:04:28.983801 2022-08-15T05:04:28.983801
10378.1/1688295
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688295
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688295/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688295/
2022-08-10T04:20:46.063429 2022-08-10T04:20:46.063429
10378.1/1689591
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689591
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689591/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689591/
2022-08-16T01:26:03.537703 2022-08-16T01:26:03.537703
10378.1/1688495
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688495
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688495/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688495/
2022-08-12T06:18:23.112709 2022-08-12T06:18:23.112709
10378.1/1689229
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689229
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689229/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689229/
2022-08-15T05:15:14.822437 2022-08-15T05:15:14.822437
10378.1/1689772
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1689772
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689772/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689772/
2022-08-18T00:23:46.265933 2022-08-18T00:23:46.540237
10378.1/1689379
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689379
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689379/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689379/
2022-08-15T05:54:03.896486 2022-08-15T05:54:03.896486
10378.1/1689021
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689021
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689021/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689021/
2022-08-15T04:42:12.021103 2022-08-15T04:42:12.021103
10378.1/1689561
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689561
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689561/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689561/
2022-08-16T01:24:09.058898 2022-08-16T01:24:09.058898
10378.1/1690236
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690236
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690236/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690236/
2022-08-30T02:16:12.570653 2022-08-30T02:16:12.570653
10378.1/1689197
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689197
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689197/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689197/
2022-08-15T05:12:46.852296 2022-08-15T05:12:46.852296
10378.1/1687595
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-07-19
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-07-19
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687595
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687595/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687595/
2022-07-19T23:51:29.379525 2022-07-19T23:51:29.379525
10378.1/1689333
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689333
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689333/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689333/
2022-08-15T05:51:00.817317 2022-08-15T05:51:00.817317
10378.1/1688877
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688877
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688877/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688877/
2022-08-15T04:31:16.594649 2022-08-15T04:31:16.594649
10378.1/1689427
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689427
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689427/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689427/
2022-08-15T07:07:15.344433 2022-08-15T07:07:15.344433
10378.1/1688605
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688605
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688605/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688605/
2022-08-12T06:28:33.072621 2022-08-12T06:28:33.072621
10378.1/1689598
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689598
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689598/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689598/
2022-08-16T01:26:38.291745 2022-08-16T01:26:38.291745
10378.1/1687304
author
name Peter Baker
email peter.baker122@csiro.au
orcid https://orcid.org/0000-0002-9821-4079
organisation
name CSIRO Oceans and Atmosphere
ror https://ror.org/026nh4520
dataset_info
name Test
description Test
publisher
name Australian National University
ror https://ror.org/019wvm592
created_date 2022-07-01
published_date 2022-07-01
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords None
version None
@graph
  • datePublished 2022-07-01
    dateCreated 2022-07-01
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-9821-4079
    about
    @id ./
    dateModified 2022-07-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-9821-4079
    @type
    • Person
    • ContactPoint
    email peter.baker122@csiro.au
    worksFor
    @id https://ror.org/026nh4520
  • name CSIRO Oceans and Atmosphere
    @type Organization
    @id https://ror.org/026nh4520
  • datePublished 2022-07-01
    identifier 10378.1/1687304
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2022-07-01
    @type Dataset
    name Test
    publisher
    @id https://ror.org/019wvm592
    description Test
    @id ./
  • name Australian National University
    @type Organization
    @id https://ror.org/019wvm592
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687304/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687304/
2022-07-01T11:58:00.696137 2022-07-01T11:58:00.696137
10378.1/1690309
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-31
    dateCreated 2022-08-31
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-31
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690309
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690309/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690309/
2022-08-31T05:59:00.484105 2022-08-31T05:59:00.770187
10378.1/1690371
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690371
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690371/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690371/
2022-09-01T01:44:37.695977 2022-09-01T01:44:37.695977
10378.1/1686981
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1686981
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686981/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686981/
2022-06-17T05:46:34.828740 2022-06-17T05:46:34.828740
10378.1/1689716
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689716
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689716/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689716/
2022-08-16T01:46:56.809574 2022-08-16T01:46:56.809574
10378.1/1687983
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687983
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687983/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687983/
2022-08-04T00:51:28.039728 2022-08-04T00:51:28.039728
10378.1/1687571
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-07-19
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-07-19
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687571
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687571/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687571/
2022-07-19T01:56:02.014285 2022-07-19T01:56:02.014285
10378.1/1688666
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688666
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688666/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688666/
2022-08-15T02:47:50.815052 2022-08-15T02:47:50.815052
10378.1/1688005
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688005
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688005/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688005/
2022-08-04T01:48:32.457612 2022-08-04T01:48:32.457612
10378.1/1689241
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689137
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689137
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689241
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689241/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689241/
2022-08-15T05:16:02.093646 2022-08-15T05:16:02.093646
10378.1/1689223
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689223
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689223/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689223/
2022-08-15T05:14:47.931392 2022-08-15T05:14:47.931392
10378.1/1690479
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690479
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690479/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690479/
2022-09-01T01:56:07.056785 2022-09-01T01:56:07.056785
10378.1/1690343
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690343
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690343/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690343/
2022-09-01T01:42:43.518570 2022-09-01T01:42:43.518570
10378.1/1689220
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689220
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689220/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689220/
2022-08-15T05:14:33.930256 2022-08-15T05:14:33.930256
10378.1/1688954
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688954
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688954/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688954/
2022-08-15T04:37:09.068637 2022-08-15T04:37:09.068637
10378.1/1687892
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687892
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687892/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687892/
2022-08-03T02:08:58.721716 2022-08-03T02:08:58.721716
10378.1/1689678
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689678
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689678/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689678/
2022-08-16T01:32:55.802202 2022-08-16T01:32:55.802202
10378.1/1689575
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689575
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689575/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689575/
2022-08-16T01:24:54.336518 2022-08-16T01:24:54.336518
10378.1/1688550
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688550
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688550/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688550/
2022-08-12T06:24:00.852431 2022-08-12T06:24:00.852431
10378.1/1688959
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688959
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688959/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688959/
2022-08-15T04:37:29.274628 2022-08-15T04:37:29.274628
10378.1/1688730
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688726
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688726
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688730
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688730/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688730/
2022-08-15T03:00:27.161833 2022-08-15T03:00:27.161833
10378.1/1688888
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688888
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688888/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688888/
2022-08-15T04:32:11.224709 2022-08-15T04:32:11.224709
10378.1/1689306
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689306
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689306/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689306/
2022-08-15T05:48:56.860691 2022-08-15T05:48:56.860691
10378.1/1689302
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689302
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689302/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689302/
2022-08-15T05:48:36.091780 2022-08-15T05:48:36.091780
10378.1/1689102
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689102
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689102/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689102/
2022-08-15T05:04:41.181956 2022-08-15T05:04:41.181956
10378.1/1687894
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687894
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687894/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687894/
2022-08-03T02:09:05.483967 2022-08-03T02:09:05.774441
10378.1/1688623
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688623
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688623/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688623/
2022-08-12T06:45:08.275066 2022-08-12T06:45:08.275066
10378.1/1688697
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688697
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688697/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688697/
2022-08-15T02:53:04.246639 2022-08-15T02:53:04.246639
10378.1/1690157
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-24
    dateCreated 2022-08-24
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690157
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690157/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690157/
2022-08-24T06:06:44.471497 2022-08-24T06:06:44.471497
10378.1/1688861
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688861
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688861/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688861/
2022-08-15T04:30:07.432587 2022-08-15T04:30:07.432587
10378.1/1687369
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-07-07
    dateCreated 2022-07-07
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-07
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687369
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687369/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687369/
2022-07-07T06:33:50.876341 2022-07-07T06:33:51.195839
10378.1/1689622
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689622
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689622/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689622/
2022-08-16T01:28:32.484856 2022-08-16T01:28:32.484856
10378.1/1689243
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689243
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689243/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689243/
2022-08-15T05:16:12.450771 2022-08-15T05:16:12.450771
10378.1/1689015
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689015
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689015/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689015/
2022-08-15T04:41:49.023163 2022-08-15T04:41:49.023163
10378.1/1689124
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689124
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689124/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689124/
2022-08-15T05:06:34.679425 2022-08-15T05:06:34.679425
10378.1/1687491
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-07-14
    dateCreated 2022-07-14
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-14
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687491
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687491/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687491/
2022-07-14T01:36:15.904166 2022-07-14T01:36:16.174835
10378.1/1687997
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687997
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687997/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687997/
2022-08-04T01:28:23.671262 2022-08-04T01:28:23.671262
10378.1/1687907
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687907
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687907/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687907/
2022-08-03T05:17:45.873305 2022-08-03T05:17:46.162602
10378.1/1688996
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688996
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688996/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688996/
2022-08-15T04:40:14.681597 2022-08-15T04:40:14.681597
10378.1/1690464
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690464
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690464/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690464/
2022-09-01T01:55:00.267190 2022-09-01T01:55:00.267190
10378.1/1689221
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689221
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689221/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689221/
2022-08-15T05:14:36.927658 2022-08-15T05:14:36.927658
10378.1/1689089
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689089
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689089/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689089/
2022-08-15T05:03:28.516673 2022-08-15T05:03:28.516673
10378.1/1687275
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687275
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687275/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687275/
2022-06-30T00:43:03.034846 2022-06-30T00:43:03.034846
10378.1/1688984
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688984
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688984/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688984/
2022-08-15T04:39:18.416909 2022-08-15T04:39:18.416909
10378.1/1689689
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689689
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689689/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689689/
2022-08-16T01:45:13.411670 2022-08-16T01:45:13.411670
10378.1/1689329
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689329
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689329/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689329/
2022-08-15T05:50:40.827846 2022-08-15T05:50:40.827846
10378.1/1689633
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689572
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689572
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689633
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689633/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689633/
2022-08-16T01:29:26.273547 2022-08-16T01:29:26.273547
10378.1/1690397
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690397
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690397/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690397/
2022-09-01T01:47:07.366337 2022-09-01T01:47:07.366337
10378.1/1688994
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688994
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688994/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688994/
2022-08-15T04:40:03.787519 2022-08-15T04:40:03.787519
10378.1/1689335
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689335
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689335/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689335/
2022-08-15T05:51:11.042544 2022-08-15T05:51:11.042544
10378.1/1688972
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688972
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688972/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688972/
2022-08-15T04:38:32.658483 2022-08-15T04:38:32.658483
10378.1/1688810
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688810
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688810/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688810/
2022-08-15T04:20:07.194138 2022-08-15T04:20:07.194138
10378.1/1689169
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689169
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689169/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689169/
2022-08-15T05:10:43.054617 2022-08-15T05:10:43.054617
10378.1/1689683
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689683
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689683/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689683/
2022-08-16T01:33:19.543666 2022-08-16T01:33:19.543666
10378.1/1688596
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688596
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688596/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688596/
2022-08-12T06:27:23.508513 2022-08-12T06:27:23.508513
10378.1/1688308
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688308
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688308/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688308/
2022-08-10T06:26:10.129085 2022-08-10T06:26:10.129085
10378.1/1689698
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689698
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689698/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689698/
2022-08-16T01:45:40.466612 2022-08-16T01:45:40.466612
10378.1/1689376
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689376
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689376/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689376/
2022-08-15T05:53:54.418345 2022-08-15T05:53:54.418345
10378.1/1689212
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689212
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689212/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689212/
2022-08-15T05:13:58.510343 2022-08-15T05:13:58.510343
10378.1/1690443
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690443
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690443/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690443/
2022-09-01T01:53:29.488593 2022-09-01T01:53:29.488593
10378.1/1689251
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689251
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689251/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689251/
2022-08-15T05:16:52.109985 2022-08-15T05:16:52.109985
10378.1/1686830
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1686830
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686830/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686830/
2022-06-06T00:50:08.238323 2022-06-06T00:50:08.238323
10378.1/1689749
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1689749
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689749/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689749/
2022-08-16T07:07:22.128723 2022-08-16T07:07:22.128723
10378.1/1689294
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689294
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689294/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689294/
2022-08-15T05:48:10.993735 2022-08-15T05:48:10.993735
10378.1/1688979
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688979
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688979/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688979/
2022-08-15T04:38:57.360735 2022-08-15T04:38:57.360735
10378.1/1689569
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689569
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689569/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689569/
2022-08-16T01:24:35.052318 2022-08-16T01:24:35.052318
10378.1/1688644
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688644
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688644/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688644/
2022-08-12T07:31:45.916489 2022-08-12T07:31:45.916489
10378.1/1687589
author
name Jonathan Yu
email jonathan.yu@csiro.au
orcid https://orcid.org/0000-0002-2237-0091
organisation
name CSIRO Land and Water
ror https://ror.org/057xz1h85
dataset_info
name Dataset produced by 3rd model processing step
description Dataset produced by 3rd model processing step
publisher
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
created_date 2022-07-15
published_date 2022-07-15
license https://creativecommons.org/licenses/by/4.0/
keywords None
version 2.0
@graph
  • datePublished 2022-07-19
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-2237-0091
    about
    @id ./
    dateModified 2022-07-19
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Jonathan Yu
    @id https://orcid.org/0000-0002-2237-0091
    @type
    • Person
    • ContactPoint
    email jonathan.yu@csiro.au
    worksFor
    @id https://ror.org/057xz1h85
  • name CSIRO Land and Water
    @type Organization
    @id https://ror.org/057xz1h85
  • datePublished 2022-07-15
    identifier 10378.1/1687589
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-07-15
    @type Dataset
    name Dataset produced by 3rd model processing step
    publisher
    @id https://ror.org/03qn8fb07
    description Dataset produced by 3rd model processing step
    @id ./
    version 2.0
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687589/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687589/
2022-07-19T08:46:56.440421 2022-07-19T08:46:56.440421
10378.1/1689238
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689238
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689238/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689238/
2022-08-15T05:15:49.677364 2022-08-15T05:15:49.677364
10378.1/1689227
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689227
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689227/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689227/
2022-08-15T05:15:04.494056 2022-08-15T05:15:04.494056
10378.1/1688640
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688640
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688640/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688640/
2022-08-12T07:18:41.606633 2022-08-12T07:18:41.606633
10378.1/1688955
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688955
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688955/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688955/
2022-08-15T04:37:12.276333 2022-08-15T04:37:12.276333
10378.1/1688362
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688362
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688362/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688362/
2022-08-12T05:42:31.478973 2022-08-12T05:42:31.478973
10378.1/1689409
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689409
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689409/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689409/
2022-08-15T07:05:42.195390 2022-08-15T07:05:42.195390
10378.1/1689711
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689711
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689711/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689711/
2022-08-16T01:46:34.177453 2022-08-16T01:46:34.177453
10378.1/1688896
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688896
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688896/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688896/
2022-08-15T04:32:50.402658 2022-08-15T04:32:50.402658
10378.1/1688643
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688643
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688643/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688643/
2022-08-12T07:27:40.481652 2022-08-12T07:27:40.481652
10378.1/1688317
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688317
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688317/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688317/
2022-08-11T00:00:44.846663 2022-08-11T00:00:44.846663
10378.1/1687209
author
name Jonathan Yu
email jonathan.yu@csiro.au
orcid None
organisation
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
dataset_info
name Test dataset
description test jy
publisher
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
created_date 2022-06-01
published_date 2022-06-08
license https://creativecommons.org/publicdomain/zero/1.0/
keywords None
version None
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-24
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Jonathan Yu
    @id record/author
    @type
    • Person
    • ContactPoint
    email jonathan.yu@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-06-08
    identifier 10378.1/1687209
    license
    @id https://creativecommons.org/publicdomain/zero/1.0/
    dateCreated 2022-06-01
    @type Dataset
    name Test dataset
    publisher
    @id https://ror.org/03qn8fb07
    description test jy
    @id ./
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687209/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687209/
2022-06-24T04:05:37.717191 2022-06-27T01:05:33.702746
10378.1/1689388
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689388
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689388/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689388/
2022-08-15T05:54:32.709219 2022-08-15T05:54:32.709219
10378.1/1689106
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689106
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689106/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689106/
2022-08-15T05:05:04.163544 2022-08-15T05:05:04.163544
10378.1/1689373
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689373
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689373/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689373/
2022-08-15T05:53:44.407216 2022-08-15T05:53:44.407216
10378.1/1688573
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688573
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688573/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688573/
2022-08-12T06:25:37.570329 2022-08-12T06:25:37.570329
10378.1/1689636
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689636
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689636/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689636/
2022-08-16T01:29:40.555944 2022-08-16T01:29:40.555944
10378.1/1690425
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690425
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690425/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690425/
2022-09-01T01:52:36.884505 2022-09-01T01:52:36.884505
10378.1/1689003
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689003
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689003/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689003/
2022-08-15T04:40:47.820773 2022-08-15T04:40:47.820773
10378.1/1688864
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688864
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688864/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688864/
2022-08-15T04:30:21.432794 2022-08-15T04:30:21.432794
10378.1/1688651
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688651
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688651/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688651/
2022-08-15T02:47:02.183520 2022-08-15T02:47:02.183520
10378.1/1687200
author
name Peter Baker
email peter.baker122@csiro.au
orcid https://orcid.org/0000-0002-2237-0091
organisation
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
dataset_info
name Test
description Test
publisher
name Australian National University
ror https://ror.org/019wvm592
created_date 2022-06-24
published_date 2022-06-24
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords None
version None
@graph
  • datePublished 2022-06-24
    dateCreated 2022-06-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-2237-0091
    about
    @id ./
    dateModified 2022-06-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-2237-0091
    @type
    • Person
    • ContactPoint
    email peter.baker122@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-06-24
    identifier 10378.1/1687200
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2022-06-24
    @type Dataset
    name Test
    publisher
    @id https://ror.org/019wvm592
    description Test
    @id ./
  • name Australian National University
    @type Organization
    @id https://ror.org/019wvm592
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687200/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687200/
2022-06-24T01:02:42.377144 2022-06-24T01:02:42.377144
10378.1/1687068
author
name Peter Baker
email peter.baker122@csiro.au
orcid https://orcid.org/0000-0002-2237-0091
organisation
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
dataset_info
name Test
description Test
publisher
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
created_date 2022-06-10
published_date 2022-06-16
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords None
version None
@graph
  • datePublished 2022-06-24
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-2237-0091
    about
    @id ./
    dateModified 2022-06-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-2237-0091
    @type
    • Person
    • ContactPoint
    email peter.baker122@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-06-16
    identifier 10378.1/1687068
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2022-06-10
    @type Dataset
    name Test
    publisher
    @id https://ror.org/03qn8fb07
    description Test
    @id ./
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687068/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687068/
2022-06-17T06:49:03.846668 2022-06-24T00:55:38.665292
10378.1/1687596
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-07-26
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-26
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687596
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687596/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687596/
2022-07-19T23:51:32.628436 2022-07-26T05:14:24.940365
10378.1/1687926
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687926
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687926/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687926/
2022-08-03T06:50:58.431125 2022-08-03T06:50:58.431125
10378.1/1690399
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690399
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690399/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690399/
2022-09-01T01:47:13.504812 2022-09-01T01:47:13.504812
10378.1/1690337
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690337
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690337/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690337/
2022-09-01T01:42:24.569794 2022-09-01T01:42:24.569794
10378.1/1690395
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690395
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690395/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690395/
2022-09-01T01:47:01.217978 2022-09-01T01:47:01.217978
10378.1/1688986
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688986
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688986/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688986/
2022-08-15T04:39:28.497240 2022-08-15T04:39:28.497240
10378.1/1690325
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690325
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690325/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690325/
2022-09-01T01:38:44.774255 2022-09-01T01:38:45.080288
10378.1/1690474
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690430
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690430
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690474
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690474/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690474/
2022-09-01T01:55:41.693252 2022-09-01T01:55:41.693252
10378.1/1688497
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688462
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688462
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688497
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688497/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688497/
2022-08-12T06:18:35.297197 2022-08-12T06:18:35.297197
10378.1/1689318
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689318
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689318/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689318/
2022-08-15T05:49:51.648860 2022-08-15T05:49:51.648860
10378.1/1688642
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688642
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688642/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688642/
2022-08-12T07:24:22.287188 2022-08-12T07:24:22.287188
10378.1/1688499
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688469
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688469
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688499
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688499/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688499/
2022-08-12T06:18:47.723920 2022-08-12T06:18:47.723920
10378.1/1689390
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689390
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689390/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689390/
2022-08-15T05:54:38.889813 2022-08-15T05:54:38.889813
10378.1/1690116
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-23
    dateCreated 2022-08-23
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-23
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690116
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690116/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690116/
2022-08-23T05:40:58.488029 2022-08-23T05:40:58.488029
10378.1/1688501
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688501
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688501/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688501/
2022-08-12T06:18:56.522915 2022-08-12T06:18:56.522915
10378.1/1687237
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687237
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687237/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687237/
2022-06-27T04:54:26.741087 2022-06-27T04:54:27.045649
10378.1/1687882
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687882
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687882/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687882/
2022-08-03T00:24:47.505335 2022-08-03T00:24:47.804012
10378.1/1689231
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689231
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689231/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689231/
2022-08-15T05:15:24.400722 2022-08-15T05:15:24.400722
10378.1/1689022
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689022
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689022/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689022/
2022-08-15T04:42:15.340630 2022-08-15T04:42:15.340630
10378.1/1689521
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689521
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689521/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689521/
2022-08-15T07:14:20.227534 2022-08-15T07:14:20.227534
10378.1/1689324
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689324
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689324/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689324/
2022-08-15T05:50:18.269794 2022-08-15T05:50:18.269794
10378.1/1688515
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688504
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688504
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688515
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688515/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688515/
2022-08-12T06:19:44.811030 2022-08-12T06:19:44.811030
10378.1/1688943
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688943
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688943/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688943/
2022-08-15T04:36:15.176226 2022-08-15T04:36:15.176226
10378.1/1688063
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688063
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688063/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688063/
2022-08-05T00:10:54.706567 2022-08-05T00:10:54.706567
10378.1/1688091
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688091
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688091/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688091/
2022-08-05T07:49:30.595897 2022-08-05T07:49:30.595897
10378.1/1689157
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689157
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689157/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689157/
2022-08-15T05:09:37.685868 2022-08-15T05:09:37.685868
10378.1/1689531
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689531
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689531/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689531/
2022-08-15T07:15:03.316771 2022-08-15T07:15:03.316771
10378.1/1688541
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688541
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688541/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688541/
2022-08-12T06:23:33.108403 2022-08-12T06:23:33.108403
10378.1/1689240
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689137
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689137
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689240
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689240/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689240/
2022-08-15T05:15:58.953545 2022-08-15T05:15:58.953545
10378.1/1688720
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688720
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688720/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688720/
2022-08-15T02:54:46.999804 2022-08-15T02:54:46.999804
10378.1/1689148
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689148
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689148/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689148/
2022-08-15T05:08:50.461863 2022-08-15T05:08:50.461863
10378.1/1689129
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689129
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689129/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689129/
2022-08-15T05:06:58.608354 2022-08-15T05:06:58.608354
10378.1/1689523
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689523
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689523/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689523/
2022-08-15T07:14:30.651210 2022-08-15T07:14:30.651210
10378.1/1688852
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688852
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688852/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688852/
2022-08-15T04:29:34.744356 2022-08-15T04:29:34.744356
10378.1/1689604
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689604
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689604/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689604/
2022-08-16T01:27:04.779165 2022-08-16T01:27:04.779165
10378.1/1688302
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688302
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688302/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688302/
2022-08-10T04:42:27.732393 2022-08-10T04:42:28.022407
10378.1/1689000
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689000
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689000/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689000/
2022-08-15T04:40:33.902312 2022-08-15T04:40:33.902312
10378.1/1688363
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688363
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688363/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688363/
2022-08-12T05:49:23.759749 2022-08-12T05:49:23.759749
10378.1/1690243
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690243
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690243/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690243/
2022-08-30T04:19:14.947633 2022-08-30T04:19:15.229215
10378.1/1690470
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690470
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690470/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690470/
2022-09-01T01:55:20.036477 2022-09-01T01:55:20.036477
10378.1/1688777
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688777
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688777/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688777/
2022-08-15T03:04:30.750769 2022-08-15T03:04:31.051264
10378.1/1688838
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688838
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688838/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688838/
2022-08-15T04:28:35.338173 2022-08-15T04:28:35.338173
10378.1/1689551
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689551
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689551/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689551/
2022-08-16T01:23:36.784712 2022-08-16T01:23:36.784712
10378.1/1690246
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690246
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690246/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690246/
2022-08-30T06:27:18.918693 2022-08-30T06:27:18.918693
10378.1/1689739
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689739
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689739/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689739/
2022-08-16T01:48:37.976656 2022-08-16T01:48:37.976656
10378.1/1689226
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689226
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689226/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689226/
2022-08-15T05:15:01.350839 2022-08-15T05:15:01.350839
10378.1/1688319
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688319
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688319/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688319/
2022-08-11T00:44:24.142219 2022-08-11T00:44:24.142219
10378.1/1689013
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689013
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689013/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689013/
2022-08-15T04:41:38.325897 2022-08-15T04:41:38.325897
10378.1/1687880
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687880
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687880/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687880/
2022-08-03T00:24:40.770466 2022-08-03T00:24:40.770466
10378.1/1689640
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689640
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689640/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689640/
2022-08-16T01:30:01.825151 2022-08-16T01:30:01.825151
10378.1/1688856
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688856
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688856/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688856/
2022-08-15T04:29:47.096520 2022-08-15T04:29:47.096520
10378.1/1688516
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688516
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688516/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688516/
2022-08-12T06:19:47.894003 2022-08-12T06:19:47.894003
10378.1/1689680
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689680
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689680/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689680/
2022-08-16T01:33:06.022440 2022-08-16T01:33:06.022440
10378.1/1689500
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689500
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689500/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689500/
2022-08-15T07:12:44.670240 2022-08-15T07:12:44.670240
10378.1/1689734
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689734
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689734/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689734/
2022-08-16T01:48:17.997884 2022-08-16T01:48:17.997884
10378.1/1690247
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690247
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690247/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690247/
2022-08-30T06:27:22.410808 2022-08-30T06:27:22.410808
10378.1/1689750
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1689750
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689750/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689750/
2022-08-16T07:07:25.523172 2022-08-16T07:07:25.802550
10378.1/1689498
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689498
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689498/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689498/
2022-08-15T07:12:35.051911 2022-08-15T07:12:35.051911
10378.1/1688288
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688288
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688288/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688288/
2022-08-10T00:57:56.353384 2022-08-10T00:57:56.688531
10378.1/1686826
author
name Peter Baker
email peter.baker122@csiro.au
orcid https://orcid.org/0000-0002-2237-0091
organisation
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
dataset_info
name Test new dataset
description Test new dataset
publisher
name Australian National University
ror https://ror.org/019wvm592
created_date 2020-10-10
published_date 2020-10-08
license https://creativecommons.org/licenses/by-sa/3.0/
keywords None
version None
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-2237-0091
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-2237-0091
    @type
    • Person
    • ContactPoint
    email peter.baker122@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2020-10-08
    identifier 10378.1/1686826
    license
    @id https://creativecommons.org/licenses/by-sa/3.0/
    dateCreated 2020-10-10
    @type Dataset
    name Test new dataset
    publisher
    @id https://ror.org/019wvm592
    description Test new dataset
    @id ./
  • name Australian National University
    @type Organization
    @id https://ror.org/019wvm592
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686826/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686826/
2022-06-06T00:23:05.791858 2022-06-06T00:23:05.791858
10378.1/1689571
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689571
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689571/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689571/
2022-08-16T01:24:41.453207 2022-08-16T01:24:41.453207
10378.1/1688392
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688385
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688385
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688392
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688392/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688392/
2022-08-12T06:01:51.252816 2022-08-12T06:01:51.252816
10378.1/1689245
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689137
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689137
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689245
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689245/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689245/
2022-08-15T05:16:22.700742 2022-08-15T05:16:22.700742
10378.1/1690448
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690430
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690430
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690448
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690448/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690448/
2022-09-01T01:53:47.633890 2022-09-01T01:53:47.633890
10378.1/1689526
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689526
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689526/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689526/
2022-08-15T07:14:44.122167 2022-08-15T07:14:44.122167
10378.1/1690355
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690355
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690355/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690355/
2022-09-01T01:43:20.983312 2022-09-01T01:43:20.983312
10378.1/1688760
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688747
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688747
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688760
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688760/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688760/
2022-08-15T03:03:02.443276 2022-08-15T03:03:02.443276
10378.1/1689464
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689464
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689464/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689464/
2022-08-15T07:10:02.574302 2022-08-15T07:10:02.574302
10378.1/1688467
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688467
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688467/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688467/
2022-08-12T06:16:39.691444 2022-08-12T06:16:39.691444
10378.1/1688886
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688886
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688886/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688886/
2022-08-15T04:32:00.246058 2022-08-15T04:32:00.246058
10378.1/1689417
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689417
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689417/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689417/
2022-08-15T07:06:25.185455 2022-08-15T07:06:25.185455
10378.1/1689237
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689237
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689237/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689237/
2022-08-15T05:15:46.688541 2022-08-15T05:15:46.688541
10378.1/1689346
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689346
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689346/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689346/
2022-08-15T05:52:00.063679 2022-08-15T05:52:00.063679
10378.1/1690429
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690429
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690429/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690429/
2022-09-01T01:52:49.228198 2022-09-01T01:52:49.228198
10378.1/1689187
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689187
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689187/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689187/
2022-08-15T05:12:01.168493 2022-08-15T05:12:01.168493
10378.1/1690490
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690490
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690490/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690490/
2022-09-01T01:56:48.933443 2022-09-01T01:56:48.933443
10378.1/1690417
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690417
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690417/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690417/
2022-09-01T01:48:09.216166 2022-09-01T01:48:09.216166
10378.1/1689149
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689149
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689149/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689149/
2022-08-15T05:08:53.534449 2022-08-15T05:08:53.534449
10378.1/1688559
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688559
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688559/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688559/
2022-08-12T06:24:51.873361 2022-08-12T06:24:51.873361
10378.1/1689082
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689082
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689082/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689082/
2022-08-15T05:02:35.915900 2022-08-15T05:02:35.915900
10378.1/1689493
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689493
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689493/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689493/
2022-08-15T07:12:14.159036 2022-08-15T07:12:14.159036
10378.1/1688966
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688966
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688966/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688966/
2022-08-15T04:38:01.638361 2022-08-15T04:38:01.638361
10378.1/1688610
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688610
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688610/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688610/
2022-08-12T06:41:57.379576 2022-08-12T06:41:57.379576
10378.1/1687248
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687248
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687248/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687248/
2022-06-28T02:13:25.385934 2022-06-28T02:13:25.385934
10378.1/1688641
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688641
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688641/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688641/
2022-08-12T07:19:52.857557 2022-08-12T07:19:52.857557
10378.1/1688765
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688742
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688742
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688765
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688765/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688765/
2022-08-15T03:03:23.310229 2022-08-15T03:03:23.310229
10378.1/1688622
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688622
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688622/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688622/
2022-08-12T06:45:05.185676 2022-08-12T06:45:05.185676
10378.1/1689784
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1689784
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689784/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689784/
2022-08-18T01:59:12.841821 2022-08-18T01:59:12.841821
10378.1/1689609
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689609
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689609/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689609/
2022-08-16T01:27:28.113410 2022-08-16T01:27:28.113410
10378.1/1688681
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688681
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688681/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688681/
2022-08-15T02:52:08.167088 2022-08-15T02:52:08.167088
10378.1/1688478
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688478
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688478/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688478/
2022-08-12T06:17:13.779240 2022-08-12T06:17:13.779240
10378.1/1689485
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689485
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689485/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689485/
2022-08-15T07:11:39.918501 2022-08-15T07:11:39.918501
10378.1/1688576
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688576
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688576/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688576/
2022-08-12T06:25:43.765313 2022-08-12T06:25:43.765313
10378.1/1689354
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689354
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689354/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689354/
2022-08-15T05:52:38.836613 2022-08-15T05:52:38.836613
10378.1/1689628
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689628
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689628/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689628/
2022-08-16T01:28:59.183357 2022-08-16T01:28:59.183357
10378.1/1689079
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689079
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689079/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689079/
2022-08-15T05:02:26.511365 2022-08-15T05:02:26.511365
10378.1/1688931
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688931
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688931/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688931/
2022-08-15T04:35:20.834139 2022-08-15T04:35:20.834139
10378.1/1689037
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689037
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689037/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689037/
2022-08-15T04:43:27.758847 2022-08-15T04:43:27.758847
10378.1/1687065
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687065
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687065/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687065/
2022-06-17T06:44:52.208170 2022-06-17T06:44:52.208170
10378.1/1688486
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688486
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688486/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688486/
2022-08-12T06:17:55.812300 2022-08-12T06:17:55.812300
10378.1/1689224
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689224
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689224/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689224/
2022-08-15T05:14:51.169025 2022-08-15T05:14:51.169025
10378.1/1689167
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689167
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689167/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689167/
2022-08-15T05:10:32.487549 2022-08-15T05:10:32.487549
10378.1/1690445
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690445
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690445/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690445/
2022-09-01T01:53:35.615020 2022-09-01T01:53:35.615020
10378.1/1688879
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688879
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688879/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688879/
2022-08-15T04:31:22.953708 2022-08-15T04:31:22.953708
10378.1/1689585
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689585
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689585/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689585/
2022-08-16T01:25:26.784533 2022-08-16T01:25:26.784533
10378.1/1689482
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689482
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689482/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689482/
2022-08-15T07:11:25.749522 2022-08-15T07:11:25.749522
10378.1/1688958
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688958
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688958/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688958/
2022-08-15T04:37:26.167889 2022-08-15T04:37:26.167889
10378.1/1688438
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688427
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688427
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688438
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688438/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688438/
2022-08-12T06:12:23.051557 2022-08-12T06:12:23.051557
10378.1/1688947
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688947
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688947/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688947/
2022-08-15T04:36:34.192021 2022-08-15T04:36:34.192021
10378.1/1689486
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689486
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689486/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689486/
2022-08-15T07:11:43.278883 2022-08-15T07:11:43.278883
10378.1/1688858
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688858
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688858/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688858/
2022-08-15T04:29:53.384693 2022-08-15T04:29:53.384693
10378.1/1689783
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1689783
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689783/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689783/
2022-08-18T01:59:09.597877 2022-08-18T01:59:09.597877
10378.1/1688846
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688846
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688846/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688846/
2022-08-15T04:29:08.390010 2022-08-15T04:29:08.390010
10378.1/1686975
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1686975
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686975/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686975/
2022-06-17T05:09:40.194018 2022-06-17T05:09:40.194018
10378.1/1689005
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689005
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689005/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689005/
2022-08-15T04:40:53.893385 2022-08-15T04:40:53.893385
10378.1/1689442
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689442
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689442/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689442/
2022-08-15T07:08:26.927455 2022-08-15T07:08:26.927455
10378.1/1689161
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689161
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689161/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689161/
2022-08-15T05:10:01.259566 2022-08-15T05:10:01.259566
10378.1/1690486
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690430
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690430
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690486
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690486/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690486/
2022-09-01T01:56:34.273032 2022-09-01T01:56:34.273032
10378.1/1688708
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688708
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688708/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688708/
2022-08-15T02:53:54.743162 2022-08-15T02:53:54.743162
10378.1/1686856
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1686856
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686856/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686856/
2022-06-06T03:06:26.943071 2022-06-06T03:06:26.943071
10378.1/1687970
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687970
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687970/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687970/
2022-08-04T00:16:44.286748 2022-08-04T00:16:44.590826
10378.1/1687066
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687066
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687066/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687066/
2022-06-17T06:44:56.671689 2022-06-17T06:44:56.671689
10378.1/1689650
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689650
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689650/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689650/
2022-08-16T01:30:46.794092 2022-08-16T01:30:46.794092
10378.1/1689056
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689056
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689056/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689056/
2022-08-15T04:45:01.649241 2022-08-15T04:45:01.649241
10378.1/1690144
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-24
    dateCreated 2022-08-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690144
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690144/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690144/
2022-08-24T01:34:19.621102 2022-08-24T01:34:19.621102
10378.1/1689706
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689706
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689706/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689706/
2022-08-16T01:46:14.251943 2022-08-16T01:46:14.251943
10378.1/1688164
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-08
    dateCreated 2022-08-08
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-08
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688164
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688164/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688164/
2022-08-08T07:19:35.090168 2022-08-08T07:19:35.090168
10378.1/1687309
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-07-04
    dateCreated 2022-07-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687309
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687309/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687309/
2022-07-04T01:41:16.204545 2022-07-04T01:41:16.484662
10378.1/1689352
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689352
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689352/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689352/
2022-08-15T05:52:29.182048 2022-08-15T05:52:29.182048
10378.1/1689832
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1689832
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689832/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689832/
2022-08-18T05:52:46.448070 2022-08-18T05:52:46.448070
10378.1/1688327
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688327
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688327/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688327/
2022-08-11T06:12:16.364617 2022-08-11T06:12:16.364617
10378.1/1689348
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689348
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689348/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689348/
2022-08-15T05:52:09.894602 2022-08-15T05:52:09.894602
10378.1/1690400
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690400
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690400/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690400/
2022-09-01T01:47:16.585866 2022-09-01T01:47:16.585866
10378.1/1688482
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688469
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688469
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688482
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688482/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688482/
2022-08-12T06:17:39.518964 2022-08-12T06:17:39.518964
10378.1/1689097
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689097
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689097/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689097/
2022-08-15T05:04:13.630056 2022-08-15T05:04:13.630056
10378.1/1690228
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690228
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690228/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690228/
2022-08-30T01:32:54.105858 2022-08-30T01:32:54.105858
10378.1/1690439
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690439
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690439/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690439/
2022-09-01T01:53:17.270982 2022-09-01T01:53:17.270982
10378.1/1688553
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688553
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688553/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688553/
2022-08-12T06:24:10.445482 2022-08-12T06:24:10.445482
10378.1/1689607
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689607
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689607/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689607/
2022-08-16T01:27:18.009247 2022-08-16T01:27:18.009247
10378.1/1688607
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688607
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688607/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688607/
2022-08-12T06:34:58.823080 2022-08-12T06:34:58.823080
10378.1/1688872
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688872
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688872/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688872/
2022-08-15T04:30:54.599183 2022-08-15T04:30:54.599183
10378.1/1689138
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689138
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689138/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689138/
2022-08-15T05:07:46.481987 2022-08-15T05:07:46.481987
10378.1/1688674
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688674
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688674/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688674/
2022-08-15T02:48:24.176307 2022-08-15T02:48:24.176307
10378.1/1690241
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690241
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690241/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690241/
2022-08-30T04:19:08.423704 2022-08-30T04:19:08.423704
10378.1/1688604
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688604
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688604/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688604/
2022-08-12T06:28:05.370822 2022-08-12T06:28:05.370822
10378.1/1688226
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688226
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688226/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688226/
2022-08-09T02:31:24.744233 2022-08-09T02:31:24.744233
10378.1/1689516
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689516
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689516/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689516/
2022-08-15T07:13:56.607983 2022-08-15T07:13:56.607983
10378.1/1689479
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689479
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689479/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689479/
2022-08-15T07:11:09.238756 2022-08-15T07:11:09.238756
10378.1/1689203
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689203
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689203/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689203/
2022-08-15T05:13:16.465445 2022-08-15T05:13:16.465445
10378.1/1688628
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688628
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688628/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688628/
2022-08-12T06:45:24.138769 2022-08-12T06:45:24.138769
10378.1/1688606
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688606
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688606/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688606/
2022-08-12T06:31:47.941113 2022-08-12T06:31:47.941113
10378.1/1688638
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688638
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688638/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688638/
2022-08-12T06:49:04.765297 2022-08-12T06:49:04.765297
10378.1/1687268
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687268
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687268/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687268/
2022-06-28T07:37:41.476717 2022-06-28T07:37:41.476717
10378.1/1688081
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688081
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688081/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688081/
2022-08-05T04:07:23.880693 2022-08-05T04:07:23.880693
10378.1/1688712
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688712
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688712/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688712/
2022-08-15T02:54:13.229356 2022-08-15T02:54:13.229356
10378.1/1689121
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689121
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689121/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689121/
2022-08-15T05:06:20.599902 2022-08-15T05:06:20.599902
10378.1/1687281
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687281
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687281/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687281/
2022-06-30T01:18:38.985014 2022-06-30T01:18:39.282406
10378.1/1688639
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688639
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688639/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688639/
2022-08-12T06:50:43.558955 2022-08-12T06:50:43.558955
10378.1/1688598
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688598
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688598/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688598/
2022-08-12T06:27:35.325655 2022-08-12T06:27:35.325655
10378.1/1689216
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689216
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689216/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689216/
2022-08-15T05:14:17.335180 2022-08-15T05:14:17.335180
10378.1/1688456
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688443
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688443
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688456
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688456/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688456/
2022-08-12T06:14:57.611506 2022-08-12T06:14:57.611506
10378.1/1690462
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690462
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690462/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690462/
2022-09-01T01:54:49.973443 2022-09-01T01:54:49.973443
10378.1/1688579
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688579
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688579/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688579/
2022-08-12T06:25:59.791336 2022-08-12T06:25:59.791336
10378.1/1687881
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687881
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687881/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687881/
2022-08-03T00:24:44.175282 2022-08-03T00:24:44.175282
10378.1/1689595
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689595
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689595/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689595/
2022-08-16T01:26:24.638424 2022-08-16T01:26:24.638424
10378.1/1689086
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689086
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689086/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689086/
2022-08-15T05:03:11.158449 2022-08-15T05:03:11.158449
10378.1/1689165
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689165
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689165/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689165/
2022-08-15T05:10:22.347097 2022-08-15T05:10:22.347097
10378.1/1688611
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688611
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688611/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688611/
2022-08-12T06:43:28.543460 2022-08-12T06:43:28.543460
10378.1/1689649
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689649
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689649/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689649/
2022-08-16T01:30:43.242879 2022-08-16T01:30:43.242879
10378.1/1689547
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689547
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689547/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689547/
2022-08-16T01:23:23.924209 2022-08-16T01:23:23.924209
10378.1/1687261
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687261
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687261/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687261/
2022-06-28T03:58:10.499070 2022-06-28T03:58:10.812854
10378.1/1689555
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689555
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689555/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689555/
2022-08-16T01:23:49.471868 2022-08-16T01:23:49.471868
10378.1/1688364
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688364
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688364/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688364/
2022-08-12T05:58:11.260711 2022-08-12T05:58:11.260711
10378.1/1689026
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689026
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689026/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689026/
2022-08-15T04:42:35.983195 2022-08-15T04:42:35.983195
10378.1/1689093
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689093
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689093/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689093/
2022-08-15T05:03:47.905387 2022-08-15T05:03:47.905387
10378.1/1689834
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1689834
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689834/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689834/
2022-08-18T05:52:52.955473 2022-08-18T05:52:53.257118
10378.1/1689743
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1689743
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689743/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689743/
2022-08-16T02:33:20.687180 2022-08-16T02:33:20.687180
10378.1/1689092
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689092
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689092/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689092/
2022-08-15T05:03:44.821597 2022-08-15T05:03:44.821597
10378.1/1689714
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689714
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689714/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689714/
2022-08-16T01:46:47.229671 2022-08-16T01:46:47.229671
10378.1/1689668
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689668
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689668/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689668/
2022-08-16T01:32:07.960080 2022-08-16T01:32:07.960080
10378.1/1688587
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688587
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688587/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688587/
2022-08-12T06:26:36.572854 2022-08-12T06:26:36.572854
10378.1/1688817
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688817
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688817/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688817/
2022-08-15T04:27:20.965339 2022-08-15T04:27:20.965339
10378.1/1687902
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687902
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687902/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687902/
2022-08-03T04:23:51.091312 2022-08-03T04:23:51.374048
10378.1/1689309
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689309
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689309/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689309/
2022-08-15T05:49:10.143700 2022-08-15T05:49:10.143700
10378.1/1688502
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688484
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688484
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688502
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688502/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688502/
2022-08-12T06:18:59.448520 2022-08-12T06:18:59.448520
10378.1/1689110
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689110
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689110/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689110/
2022-08-15T05:05:26.510237 2022-08-15T05:05:26.510237
10378.1/1688524
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688504
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688504
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688524
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688524/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688524/
2022-08-12T06:20:33.991431 2022-08-12T06:20:33.991431
10378.1/1688309
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688309
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688309/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688309/
2022-08-10T06:26:13.406567 2022-08-10T06:26:13.406567
10378.1/1689159
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689159
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689159/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689159/
2022-08-15T05:09:50.909406 2022-08-15T05:09:50.909406
10378.1/1688401
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688385
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688385
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688401
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688401/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688401/
2022-08-12T06:02:19.258669 2022-08-12T06:02:19.258669
10378.1/1688395
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688385
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688385
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688395
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688395/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688395/
2022-08-12T06:02:00.490468 2022-08-12T06:02:00.490468
10378.1/1690357
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690357
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690357/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690357/
2022-09-01T01:43:27.312887 2022-09-01T01:43:27.312887
10378.1/1689135
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689135
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689135/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689135/
2022-08-15T05:07:30.528402 2022-08-15T05:07:30.528402
10378.1/1688464
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688464
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688464/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688464/
2022-08-12T06:16:32.291190 2022-08-12T06:16:32.291190
10378.1/1689258
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689254
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689254
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689258
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689258/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689258/
2022-08-15T05:46:06.327081 2022-08-15T05:46:06.327081
10378.1/1689467
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689467
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689467/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689467/
2022-08-15T07:10:16.228424 2022-08-15T07:10:16.228424
10378.1/1688719
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688719
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688719/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688719/
2022-08-15T02:54:43.846908 2022-08-15T02:54:43.846908
10378.1/1688006
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688006
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688006/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688006/
2022-08-04T01:48:37.087644 2022-08-04T01:48:37.087644
10378.1/1689643
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689643
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689643/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689643/
2022-08-16T01:30:15.033454 2022-08-16T01:30:15.033454
10378.1/1689584
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689584
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689584/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689584/
2022-08-16T01:25:23.608884 2022-08-16T01:25:23.608884
10378.1/1688494
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688469
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688469
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688494
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688494/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688494/
2022-08-12T06:18:18.185281 2022-08-12T06:18:18.185281
10378.1/1689154
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689154
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689154/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689154/
2022-08-15T05:09:22.168676 2022-08-15T05:09:22.168676
10378.1/1688968
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688968
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688968/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688968/
2022-08-15T04:38:11.973288 2022-08-15T04:38:11.973288
10378.1/1686877
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1686877
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686877/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686877/
2022-06-06T07:15:31.522037 2022-06-06T07:15:31.815354
10378.1/1689119
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689119
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689119/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689119/
2022-08-15T05:06:09.963779 2022-08-15T05:06:09.963779
10378.1/1688898
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688898
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688898/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688898/
2022-08-15T04:32:59.780000 2022-08-15T04:32:59.780000
10378.1/1689034
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689034
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689034/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689034/
2022-08-15T04:43:12.213726 2022-08-15T04:43:12.213726
10378.1/1689232
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689232
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689232/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689232/
2022-08-15T05:15:27.471104 2022-08-15T05:15:27.471104
10378.1/1687572
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-07-19
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-19
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687572
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687572/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687572/
2022-07-19T01:56:05.699552 2022-07-19T01:56:06.002643
10378.1/1687999
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687999
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687999/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687999/
2022-08-04T01:28:29.944185 2022-08-04T01:28:30.220273
10378.1/1690117
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-23
    dateCreated 2022-08-23
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-23
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690117
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690117/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690117/
2022-08-23T05:41:01.805227 2022-08-23T05:41:02.098493
10378.1/1690115
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-23
    dateCreated 2022-08-23
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-23
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690115
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690115/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690115/
2022-08-23T05:40:54.950818 2022-08-23T05:40:54.950818
10378.1/1689128
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689128
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689128/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689128/
2022-08-15T05:06:55.411063 2022-08-15T05:06:55.411063
10378.1/1688871
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688871
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688871/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688871/
2022-08-15T04:30:51.422454 2022-08-15T04:30:51.422454
10378.1/1689123
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689123
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689123/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689123/
2022-08-15T05:06:31.657736 2022-08-15T05:06:31.657736
10378.1/1686976
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1686976
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686976/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686976/
2022-06-17T05:09:44.317029 2022-06-17T05:09:44.317029
10378.1/1689490
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689490
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689490/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689490/
2022-08-15T07:12:00.604154 2022-08-15T07:12:00.604154
10378.1/1688808
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688808
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688808/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688808/
2022-08-15T04:19:56.831149 2022-08-15T04:19:56.831149
10378.1/1689641
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689572
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689572
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689641
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689641/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689641/
2022-08-16T01:30:04.990688 2022-08-16T01:30:04.990688
10378.1/1687985
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687985
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687985/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687985/
2022-08-04T00:51:34.469893 2022-08-04T00:51:34.785141
10378.1/1688432
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688427
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688427
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688432
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688432/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688432/
2022-08-12T06:12:04.579986 2022-08-12T06:12:04.579986
10378.1/1688577
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688577
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688577/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688577/
2022-08-12T06:25:46.871967 2022-08-12T06:25:46.871967
10378.1/1688627
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688627
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688627/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688627/
2022-08-12T06:45:21.051379 2022-08-12T06:45:21.051379
10378.1/1689647
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689647
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689647/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689647/
2022-08-16T01:30:31.870877 2022-08-16T01:30:31.870877
10378.1/1688316
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688316
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688316/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688316/
2022-08-10T23:48:30.201647 2022-08-10T23:48:30.201647
10378.1/1688828
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688828
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688828/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688828/
2022-08-15T04:27:56.001591 2022-08-15T04:27:56.001591
10378.1/1688653
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688653
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688653/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688653/
2022-08-15T02:47:09.025449 2022-08-15T02:47:09.025449
10378.1/1688492
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688492
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688492/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688492/
2022-08-12T06:18:11.920917 2022-08-12T06:18:11.920917
10378.1/1689771
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1689771
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689771/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689771/
2022-08-18T00:23:42.914569 2022-08-18T00:23:42.914569
10378.1/1688740
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688726
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688726
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688740
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688740/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688740/
2022-08-15T03:00:59.618640 2022-08-15T03:00:59.618640
10378.1/1688261
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688261
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688261/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688261/
2022-08-09T10:23:02.010859 2022-08-09T10:23:02.010859
10378.1/1688633
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688633
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688633/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688633/
2022-08-12T06:45:39.773635 2022-08-12T06:45:39.773635
10378.1/1690342
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690342
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690342/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690342/
2022-09-01T01:42:40.442691 2022-09-01T01:42:40.442691
10378.1/1688925
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688925
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688925/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688925/
2022-08-15T04:34:55.511614 2022-08-15T04:34:55.511614
10378.1/1688062
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688062
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688062/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688062/
2022-08-05T00:10:51.513335 2022-08-05T00:10:51.513335
10378.1/1688448
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688443
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688443
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688448
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688448/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688448/
2022-08-12T06:14:32.876543 2022-08-12T06:14:32.876543
10378.1/1688805
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688805
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688805/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688805/
2022-08-15T04:19:43.583625 2022-08-15T04:19:43.583625
10378.1/1689043
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689043
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689043/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689043/
2022-08-15T04:43:57.883915 2022-08-15T04:43:57.883915
10378.1/1687219
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687219
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687219/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687219/
2022-06-27T01:29:39.622410 2022-06-27T01:29:39.622410
10378.1/1689301
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689301
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689301/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689301/
2022-08-15T05:48:33.016829 2022-08-15T05:48:33.016829
10378.1/1689180
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689180
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689180/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689180/
2022-08-15T05:11:32.239554 2022-08-15T05:11:32.239554
10378.1/1689199
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689199
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689199/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689199/
2022-08-15T05:12:56.940831 2022-08-15T05:12:56.940831
10378.1/1689272
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689254
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689254
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689272
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689272/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689272/
2022-08-15T05:46:51.238134 2022-08-15T05:46:51.238134
10378.1/1688591
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688591
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688591/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688591/
2022-08-12T06:26:56.088393 2022-08-12T06:26:56.088393
10378.1/1688574
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688574
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688574/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688574/
2022-08-12T06:25:37.546667 2022-08-12T06:25:37.546667
10378.1/1687240
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687240
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687240/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687240/
2022-06-27T07:04:20.225746 2022-06-27T07:04:20.225746
10378.1/1687208
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-24
    dateCreated 2022-06-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687208
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687208/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687208/
2022-06-24T02:16:08.654584 2022-06-24T02:27:07.009738
10378.1/1689529
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689529
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689529/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689529/
2022-08-15T07:14:56.897871 2022-08-15T07:14:56.897871
10378.1/1689004
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689004
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689004/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689004/
2022-08-15T04:40:50.834803 2022-08-15T04:40:50.834803
10378.1/1689268
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689254
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689254
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689268
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689268/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689268/
2022-08-15T05:46:38.829734 2022-08-15T05:46:38.829734
10378.1/1688031
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688031
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688031/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688031/
2022-08-04T05:38:57.278227 2022-08-04T05:38:57.278227
10378.1/1689331
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689331
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689331/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689331/
2022-08-15T05:50:50.691603 2022-08-15T05:50:50.691603
10378.1/1689145
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689145
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689145/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689145/
2022-08-15T05:08:32.980788 2022-08-15T05:08:32.980788
10378.1/1689533
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689533
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689533/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689533/
2022-08-15T07:15:13.729053 2022-08-15T07:15:13.729053
10378.1/1688312
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688312
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688312/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688312/
2022-08-10T09:17:40.646742 2022-08-10T09:17:40.646742
10378.1/1689444
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689444
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689444/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689444/
2022-08-15T07:08:37.724808 2022-08-15T07:08:37.724808
10378.1/1689558
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689558
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689558/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689558/
2022-08-16T01:23:59.077490 2022-08-16T01:23:59.077490
10378.1/1689474
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689474
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689474/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689474/
2022-08-15T07:10:48.717616 2022-08-15T07:10:48.717616
10378.1/1689183
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689183
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689183/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689183/
2022-08-15T05:11:44.958774 2022-08-15T05:11:44.958774
10378.1/1688032
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688032
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688032/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688032/
2022-08-04T05:39:00.562846 2022-08-04T05:39:00.900810
10378.1/1688857
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688857
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688857/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688857/
2022-08-15T04:29:50.255173 2022-08-15T04:29:50.255173
10378.1/1689619
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689619
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689619/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689619/
2022-08-16T01:28:19.017313 2022-08-16T01:28:19.017313
10378.1/1688929
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688929
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688929/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688929/
2022-08-15T04:35:11.385146 2022-08-15T04:35:11.385146
10378.1/1690384
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690384
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690384/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690384/
2022-09-01T01:45:18.094547 2022-09-01T01:45:18.094547
10378.1/1688300
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688300
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688300/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688300/
2022-08-10T04:42:21.187593 2022-08-10T04:42:21.187593
10378.1/1689040
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689040
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689040/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689040/
2022-08-15T04:43:42.730684 2022-08-15T04:43:42.730684
10378.1/1687969
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687969
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687969/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687969/
2022-08-04T00:16:41.119432 2022-08-04T00:16:41.119432
10378.1/1688609
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688609
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688609/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688609/
2022-08-12T06:38:26.746662 2022-08-12T06:38:26.746662
10378.1/1688475
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688475
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688475/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688475/
2022-08-12T06:17:04.556419 2022-08-12T06:17:04.556419
10378.1/1689730
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689730
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689730/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689730/
2022-08-16T01:47:56.593534 2022-08-16T01:47:56.593534
10378.1/1688511
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688511
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688511/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688511/
2022-08-12T06:19:32.411754 2022-08-12T06:19:32.411754
10378.1/1687893
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687893
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687893/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687893/
2022-08-03T02:09:02.222515 2022-08-03T02:09:02.222515
10378.1/1690334
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690334
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690334/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690334/
2022-09-01T01:42:15.438325 2022-09-01T01:42:15.438325
10378.1/1689534
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689534
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689534/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689534/
2022-08-15T07:15:17.032189 2022-08-15T07:15:17.032189
10378.1/1688384
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688384
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688384/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688384/
2022-08-12T06:00:20.509088 2022-08-12T06:00:20.509088
10378.1/1687363
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-07-07
    dateCreated 2022-07-07
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-07-07
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687363
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687363/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687363/
2022-07-07T05:55:28.627783 2022-07-07T05:55:28.627783
10378.1/1690386
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690386
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690386/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690386/
2022-09-01T01:45:24.285343 2022-09-01T01:45:24.285343
10378.1/1689729
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689729
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689729/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689729/
2022-08-16T01:47:53.351330 2022-08-16T01:47:53.351330
10378.1/1689142
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689142
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689142/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689142/
2022-08-15T05:08:16.195799 2022-08-15T05:08:16.195799
10378.1/1687221
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687221
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687221/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687221/
2022-06-27T01:29:48.436319 2022-06-27T01:29:48.747135
10378.1/1689629
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689629
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689629/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689629/
2022-08-16T01:29:02.414454 2022-08-16T01:29:02.414454
10378.1/1690376
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690376
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690376/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690376/
2022-09-01T01:44:53.185363 2022-09-01T01:44:53.185363
10378.1/1690393
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690393
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690393/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690393/
2022-09-01T01:46:55.010503 2022-09-01T01:46:55.010503
10378.1/1688518
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688462
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688462
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688518
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688518/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688518/
2022-08-12T06:19:59.435802 2022-08-12T06:19:59.435802
10378.1/1690396
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690389
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690389
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690396
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690396/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690396/
2022-09-01T01:47:04.266399 2022-09-01T01:47:04.266399
10378.1/1689673
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689673
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689673/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689673/
2022-08-16T01:32:32.072907 2022-08-16T01:32:32.072907
10378.1/1688287
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688287
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688287/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688287/
2022-08-10T00:57:53.087439 2022-08-10T00:57:53.087439
10378.1/1689151
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689151
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689151/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689151/
2022-08-15T05:09:06.333730 2022-08-15T05:09:06.333730
10378.1/1686927
author
name Ross Petridis
email ross.petridis@csiro.au
orcid https://orcid.org/0000-0002-3798-9719
organisation
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
dataset_info
name orcid test upload
description This is a test
publisher
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
created_date 2022-06-17
published_date 2022-06-24
license https://creativecommons.org/publicdomain/zero/1.0/
keywords
  • keyword 2
  • keyword2
version 1.1.1
@graph
  • datePublished 2022-06-09
    dateCreated 2022-06-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-3798-9719
    about
    @id ./
    dateModified 2022-06-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-3798-9719
    @type
    • Person
    • ContactPoint
    email ross.petridis@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-06-24
    identifier 10378.1/1686927
    license
    @id https://creativecommons.org/publicdomain/zero/1.0/
    dateCreated 2022-06-17
    keywords
    • keyword 2
    • keyword2
    @type Dataset
    name orcid test upload
    publisher
    @id https://ror.org/03qn8fb07
    description This is a test
    @id ./
    version 1.1.1
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686927/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686927/
2022-06-09T02:25:22.997316 2022-06-09T02:25:22.997316
10378.1/1689732
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689732
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689732/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689732/
2022-08-16T01:48:08.356941 2022-08-16T01:48:08.356941
10378.1/1689600
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689600
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689600/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689600/
2022-08-16T01:26:48.310110 2022-08-16T01:26:48.310110
10378.1/1690454
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690454
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690454/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690454/
2022-09-01T01:54:13.932276 2022-09-01T01:54:13.932276
10378.1/1686876
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1686876
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686876/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686876/
2022-06-06T07:15:27.624693 2022-06-06T07:15:27.624693
10378.1/1688894
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688894
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688894/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688894/
2022-08-15T04:32:40.437357 2022-08-15T04:32:40.437357
10378.1/1689027
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689027
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689027/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689027/
2022-08-15T04:42:39.098314 2022-08-15T04:42:39.098314
10378.1/1689316
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689316
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689316/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689316/
2022-08-15T05:49:42.092732 2022-08-15T05:49:42.092732
10378.1/1688806
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688806
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688806/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688806/
2022-08-15T04:19:46.697814 2022-08-15T04:19:46.697814
10378.1/1687364
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-07-07
    dateCreated 2022-07-07
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-07
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687364
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687364/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687364/
2022-07-07T05:55:32.568072 2022-07-07T05:55:32.887410
10378.1/1688711
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688711
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688711/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688711/
2022-08-15T02:54:10.081680 2022-08-15T02:54:10.081680
10378.1/1688671
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688671
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688671/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688671/
2022-08-15T02:48:08.524119 2022-08-15T02:48:08.524119
10378.1/1689175
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689175
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689175/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689175/
2022-08-15T05:11:13.307788 2022-08-15T05:11:13.307788
10378.1/1689276
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689254
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689254
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689276
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689276/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689276/
2022-08-15T05:47:08.399867 2022-08-15T05:47:08.399867
10378.1/1688795
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688795
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688795/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688795/
2022-08-15T04:19:01.108957 2022-08-15T04:19:01.108957
10378.1/1687900
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687900
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687900/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687900/
2022-08-03T04:23:43.542927 2022-08-03T04:23:43.542927
10378.1/1688461
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688461
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688461/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688461/
2022-08-12T06:16:23.418993 2022-08-12T06:16:23.418993
10378.1/1688920
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688920
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688920/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688920/
2022-08-15T04:34:34.727372 2022-08-15T04:34:34.727372
10378.1/1689652
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689652
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689652/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689652/
2022-08-16T01:30:57.102696 2022-08-16T01:30:57.102696
10378.1/1690364
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690364
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690364/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690364/
2022-09-01T01:44:15.869816 2022-09-01T01:44:15.869816
10378.1/1687928
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687928
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687928/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687928/
2022-08-03T06:51:04.895823 2022-08-03T06:51:05.214721
10378.1/1688437
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688427
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688427
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688437
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688437/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688437/
2022-08-12T06:12:19.957641 2022-08-12T06:12:19.957641
10378.1/1689350
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689350
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689350/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689350/
2022-08-15T05:52:19.513659 2022-08-15T05:52:19.513659
10378.1/1688455
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688443
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688443
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688455
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688455/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688455/
2022-08-12T06:14:54.583712 2022-08-12T06:14:54.583712
10378.1/1688876
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688876
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688876/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688876/
2022-08-15T04:31:13.508659 2022-08-15T04:31:13.508659
10378.1/1689307
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689307
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689307/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689307/
2022-08-15T05:48:59.984228 2022-08-15T05:48:59.984228
10378.1/1688286
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688286
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688286/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688286/
2022-08-10T00:57:49.495904 2022-08-10T00:57:49.495904
10378.1/1689070
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689070
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689070/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689070/
2022-08-15T05:01:58.149321 2022-08-15T05:01:58.149321
10378.1/1688842
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688842
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688842/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688842/
2022-08-15T04:28:50.794856 2022-08-15T04:28:50.794856
10378.1/1688892
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688892
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688892/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688892/
2022-08-15T04:32:29.124054 2022-08-15T04:32:29.124054
10378.1/1689671
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689671
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689671/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689671/
2022-08-16T01:32:21.765261 2022-08-16T01:32:21.765261
10378.1/1688961
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688961
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688961/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688961/
2022-08-15T04:37:40.855576 2022-08-15T04:37:40.855576
10378.1/1689440
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689440
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689440/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689440/
2022-08-15T07:08:16.141737 2022-08-15T07:08:16.141737
10378.1/1688514
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688484
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688484
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688514
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688514/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688514/
2022-08-12T06:19:41.748566 2022-08-12T06:19:41.748566
10378.1/1688080
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO Land and Water
ror https://ror.org/057xz1h85
dataset_info
name Demo dataset
description A description
publisher
name CSIRO Land and Water
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • Demo
version None
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/057xz1h85
  • name CSIRO Land and Water
    @type Organization
    @id https://ror.org/057xz1h85
  • datePublished 2022-08-05
    identifier 10378.1/1688080
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • Demo
    @type Dataset
    name Demo dataset
    publisher
    @id https://ror.org/057xz1h85
    description A description
    @id ./
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688080/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688080/
2022-08-05T04:03:50.408048 2022-08-05T04:03:50.408048
10378.1/1688860
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688860
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688860/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688860/
2022-08-15T04:30:04.235004 2022-08-15T04:30:04.235004
10378.1/1689654
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689654
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689654/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689654/
2022-08-16T01:31:04.245124 2022-08-16T01:31:04.245124
10378.1/1689511
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689511
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689511/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689511/
2022-08-15T07:13:33.190754 2022-08-15T07:13:33.190754
10378.1/1690380
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690380
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690380/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690380/
2022-09-01T01:45:05.715745 2022-09-01T01:45:05.715745
10378.1/1686831
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1686831
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686831/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686831/
2022-06-06T00:50:11.961417 2022-06-06T00:50:12.264608
10378.1/1689344
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689344
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689344/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689344/
2022-08-15T05:51:50.711639 2022-08-15T05:51:50.711639
10378.1/1687490
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-07-14
    dateCreated 2022-07-14
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-07-14
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687490
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687490/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687490/
2022-07-14T01:36:12.803682 2022-07-14T01:36:12.803682
10378.1/1688394
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688385
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688385
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688394
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688394/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688394/
2022-08-12T06:01:57.399723 2022-08-12T06:01:57.399723
10378.1/1689271
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689254
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689254
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689271
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689271/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689271/
2022-08-15T05:46:48.078454 2022-08-15T05:46:48.078454
10378.1/1689452
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689452
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689452/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689452/
2022-08-15T07:09:11.561429 2022-08-15T07:09:11.561429
10378.1/1689613
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689613
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689613/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689613/
2022-08-16T01:27:48.333774 2022-08-16T01:27:48.333774
10378.1/1689340
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689340
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689340/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689340/
2022-08-15T05:51:30.589503 2022-08-15T05:51:30.589503
10378.1/1689738
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689738
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689738/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689738/
2022-08-16T01:48:34.842723 2022-08-16T01:48:34.842723
10378.1/1689366
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689366
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689366/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689366/
2022-08-15T05:53:22.351259 2022-08-15T05:53:22.351259
10378.1/1688884
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688884
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688884/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688884/
2022-08-15T04:31:48.944759 2022-08-15T04:31:48.944759
10378.1/1689205
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689205
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689205/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689205/
2022-08-15T05:13:26.340232 2022-08-15T05:13:26.340232
10378.1/1689505
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689505
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689505/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689505/
2022-08-15T07:13:05.571086 2022-08-15T07:13:05.571086
10378.1/1689723
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689723
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689723/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689723/
2022-08-16T01:47:30.225999 2022-08-16T01:47:30.225999
10378.1/1689186
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689186
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689186/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689186/
2022-08-15T05:11:58.000337 2022-08-15T05:11:58.000337
10378.1/1688881
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688881
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688881/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688881/
2022-08-15T04:31:34.336844 2022-08-15T04:31:34.336844
10378.1/1689201
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689201
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689201/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689201/
2022-08-15T05:13:06.574664 2022-08-15T05:13:06.574664
10378.1/1688310
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688310
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688310/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688310/
2022-08-10T06:26:16.653712 2022-08-10T06:26:16.942978
10378.1/1688617
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688617
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688617/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688617/
2022-08-12T06:44:49.655872 2022-08-12T06:44:49.655872
10378.1/1689396
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1689396
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689396/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689396/
2022-08-15T07:02:01.109140 2022-08-15T07:02:01.109140
10378.1/1688948
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688948
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688948/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688948/
2022-08-15T04:36:37.353151 2022-08-15T04:36:37.353151
10378.1/1689104
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689104
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689104/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689104/
2022-08-15T05:04:52.917186 2022-08-15T05:04:52.917186
10378.1/1690472
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690472
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690472/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690472/
2022-09-01T01:55:31.129228 2022-09-01T01:55:31.129228
10378.1/1688228
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688228
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688228/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688228/
2022-08-09T02:31:31.030016 2022-08-09T02:31:31.455901
10378.1/1689646
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689646
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689646/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689646/
2022-08-16T01:30:28.620290 2022-08-16T01:30:28.620290
10378.1/1687906
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687906
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687906/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687906/
2022-08-03T05:17:42.190993 2022-08-03T05:17:42.190993
10378.1/1687259
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687259
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687259/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687259/
2022-06-28T03:58:01.783273 2022-06-28T03:58:01.783273
10378.1/1688700
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688700
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688700/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688700/
2022-08-15T02:53:19.321100 2022-08-15T02:53:19.321100
10378.1/1690349
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690349
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690349/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690349/
2022-09-01T01:43:02.180062 2022-09-01T01:43:02.180062
10378.1/1687859
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687859
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687859/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687859/
2022-08-02T05:22:37.115678 2022-08-02T05:22:37.115678
10378.1/1687307
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-07-04
    dateCreated 2022-07-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687307
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687307/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687307/
2022-07-04T01:41:08.083564 2022-07-04T01:41:08.083564
10378.1/1688776
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688776
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688776/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688776/
2022-08-15T03:04:27.393186 2022-08-15T03:04:27.393186
10378.1/1689497
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689497
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689497/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689497/
2022-08-15T07:12:31.870717 2022-08-15T07:12:31.870717
10378.1/1689111
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689111
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689111/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689111/
2022-08-15T05:05:29.637649 2022-08-15T05:05:29.637649
10378.1/1688634
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688634
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688634/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688634/
2022-08-12T06:45:42.897864 2022-08-12T06:45:42.897864
10378.1/1688375
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688375
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688375/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688375/
2022-08-12T05:59:51.461221 2022-08-12T05:59:51.461221
10378.1/1689326
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689326
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689326/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689326/
2022-08-15T05:50:28.153021 2022-08-15T05:50:28.153021
10378.1/1689579
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689579
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689579/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689579/
2022-08-16T01:25:07.161651 2022-08-16T01:25:07.161651
10378.1/1689001
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689001
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689001/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689001/
2022-08-15T04:40:37.042834 2022-08-15T04:40:37.042834
10378.1/1689470
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689470
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689470/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689470/
2022-08-15T07:10:30.609550 2022-08-15T07:10:30.609550
10378.1/1688739
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688726
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688726
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688739
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688739/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688739/
2022-08-15T03:00:56.133435 2022-08-15T03:00:56.133435
10378.1/1689179
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689137
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689137
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689179
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689179/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689179/
2022-08-15T05:11:29.179196 2022-08-15T05:11:29.179196
10378.1/1689615
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689615
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689615/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689615/
2022-08-16T01:27:58.495582 2022-08-16T01:27:58.495582
10378.1/1688792
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688792
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688792/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688792/
2022-08-15T04:18:51.625539 2022-08-15T04:18:51.625539
10378.1/1689039
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689039
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689039/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689039/
2022-08-15T04:43:39.649877 2022-08-15T04:43:39.649877
10378.1/1688952
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688952
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688952/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688952/
2022-08-15T04:36:59.313798 2022-08-15T04:36:59.313798
10378.1/1686977
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1686977
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686977/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686977/
2022-06-17T05:09:48.533734 2022-06-17T05:09:48.841269
10378.1/1689075
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689075
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689075/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689075/
2022-08-15T05:02:14.025615 2022-08-15T05:02:14.025615
10378.1/1688590
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688590
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688590/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688590/
2022-08-12T06:26:52.972274 2022-08-12T06:26:52.972274
10378.1/1688601
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688601
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688601/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688601/
2022-08-12T06:27:50.530372 2022-08-12T06:27:50.530372
10378.1/1688581
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688568
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688568
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688581
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688581/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688581/
2022-08-12T06:26:12.291694 2022-08-12T06:26:12.291694
10378.1/1689478
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689478
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689478/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689478/
2022-08-15T07:11:05.706677 2022-08-15T07:11:05.706677
10378.1/1688406
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688406
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688406/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688406/
2022-08-12T06:05:22.895308 2022-08-12T06:05:22.895308
10378.1/1688645
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688645
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688645/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688645/
2022-08-12T07:41:22.807086 2022-08-12T07:41:22.807086
10378.1/1688513
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688469
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688469
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688513
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688513/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688513/
2022-08-12T06:19:38.576185 2022-08-12T06:19:38.576185
10378.1/1688998
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688998
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688998/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688998/
2022-08-15T04:40:24.376061 2022-08-15T04:40:24.376061
10378.1/1688757
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688747
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688747
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688757
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688757/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688757/
2022-08-15T03:02:52.907849 2022-08-15T03:02:52.907849
10378.1/1688646
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688646
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688646/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688646/
2022-08-12T07:43:50.196992 2022-08-12T07:43:50.196992
10378.1/1689342
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689342
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689342/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689342/
2022-08-15T05:51:40.519444 2022-08-15T05:51:40.519444
10378.1/1689694
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689694
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689694/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689694/
2022-08-16T01:45:26.689662 2022-08-16T01:45:26.689662
10378.1/1690237
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690237
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690237/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690237/
2022-08-30T02:16:16.758437 2022-08-30T02:16:17.039757
10378.1/1689777
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1689777
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689777/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689777/
2022-08-18T00:58:21.676901 2022-08-18T00:58:21.993951
10378.1/1687207
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-24
    dateCreated 2022-06-24
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687207
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687207/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687207/
2022-06-24T02:16:04.894934 2022-06-24T02:16:04.894934
10378.1/1689053
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689053
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689053/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689053/
2022-08-15T04:44:46.862122 2022-08-15T04:44:46.862122
10378.1/1690347
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690347
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690347/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690347/
2022-09-01T01:42:56.032743 2022-09-01T01:42:56.032743
10378.1/1689321
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689321
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689321/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689321/
2022-08-15T05:50:04.894180 2022-08-15T05:50:04.894180
10378.1/1689323
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689323
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689323/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689323/
2022-08-15T05:50:15.048688 2022-08-15T05:50:15.048688
10378.1/1688636
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688613
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688613
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688636
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688636/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688636/
2022-08-12T06:45:49.115483 2022-08-12T06:45:49.115483
10378.1/1686825
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1686825
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686825/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686825/
2022-06-06T00:13:03.230556 2022-06-06T00:13:03.552719
10378.1/1689117
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689117
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689117/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689117/
2022-08-15T05:05:58.246220 2022-08-15T05:05:58.246220
10378.1/1688007
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688007
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688007/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688007/
2022-08-04T01:48:40.295669 2022-08-04T01:48:40.580322
10378.1/1688334
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1688334
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688334/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688334/
2022-08-11T06:59:45.383159 2022-08-11T06:59:45.665157
10378.1/1688913
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688913
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688913/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688913/
2022-08-15T04:34:01.315699 2022-08-15T04:34:01.315699
10378.1/1687860
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687860
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687860/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687860/
2022-08-02T05:22:40.313613 2022-08-02T05:22:40.580591
10378.1/1690456
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690456
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690456/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690456/
2022-09-01T01:54:23.518292 2022-09-01T01:54:23.518292
10378.1/1690333
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690333
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690333/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690333/
2022-09-01T01:42:12.343592 2022-09-01T01:42:12.343592
10378.1/1686857
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1686857
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686857/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686857/
2022-06-06T03:06:31.223110 2022-06-06T03:06:31.223110
10378.1/1690491
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690491
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690491/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690491/
2022-09-01T01:58:44.497824 2022-09-01T01:58:44.497824
10378.1/1688552
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688552
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688552/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688552/
2022-08-12T06:24:07.302488 2022-08-12T06:24:07.302488
10378.1/1690308
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-31
    dateCreated 2022-08-31
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-31
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690308
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690308/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690308/
2022-08-31T05:58:56.565587 2022-08-31T05:58:56.565587
10378.1/1689589
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689589
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689589/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689589/
2022-08-16T01:25:53.359739 2022-08-16T01:25:53.359739
10378.1/1689189
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689189
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689189/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689189/
2022-08-15T05:12:11.700741 2022-08-15T05:12:11.700741
10378.1/1690330
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690330
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690330/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690330/
2022-09-01T01:42:02.382134 2022-09-01T01:42:02.382134
10378.1/1690362
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690362
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690362/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690362/
2022-09-01T01:44:09.757090 2022-09-01T01:44:09.757090
10378.1/1688373
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688373
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688373/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688373/
2022-08-12T05:59:45.331147 2022-08-12T05:59:45.331147
10378.1/1690387
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690387
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690387/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690387/
2022-09-01T01:45:27.461430 2022-09-01T01:45:27.461430
10378.1/1689663
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689663
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689663/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689663/
2022-08-16T01:31:44.093108 2022-08-16T01:31:44.093108
10378.1/1690158
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-24
    dateCreated 2022-08-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690158
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690158/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690158/
2022-08-24T06:06:47.815085 2022-08-24T06:06:48.113137
10378.1/1689214
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689214
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689214/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689214/
2022-08-15T05:14:07.796842 2022-08-15T05:14:07.796842
10378.1/1689635
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689635
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689635/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689635/
2022-08-16T01:29:36.797679 2022-08-16T01:29:36.797679
10378.1/1689249
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689249
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689249/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689249/
2022-08-15T05:16:42.911570 2022-08-15T05:16:42.911570
10378.1/1689173
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689173
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689173/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689173/
2022-08-15T05:11:04.069116 2022-08-15T05:11:04.069116
10378.1/1689437
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689437
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689437/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689437/
2022-08-15T07:08:01.890774 2022-08-15T07:08:01.890774
10378.1/1687570
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-07-19
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-19
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687570
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687570/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687570/
2022-07-19T01:55:58.297885 2022-07-19T01:55:58.297885
10378.1/1687249
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687249
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687249/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687249/
2022-06-28T02:13:29.672710 2022-06-28T02:13:29.672710
10378.1/1690377
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690377
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690377/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690377/
2022-09-01T01:44:56.362934 2022-09-01T01:44:56.362934
10378.1/1689395
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1689395
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689395/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689395/
2022-08-15T07:01:57.766153 2022-08-15T07:01:57.766153
10378.1/1689368
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689368
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689368/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689368/
2022-08-15T05:53:28.413542 2022-08-15T05:53:28.413542
10378.1/1689605
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689605
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689605/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689605/
2022-08-16T01:27:07.979830 2022-08-16T01:27:07.979830
10378.1/1689462
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689462
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689462/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689462/
2022-08-15T07:09:52.004265 2022-08-15T07:09:52.004265
10378.1/1689665
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689665
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689665/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689665/
2022-08-16T01:31:54.274316 2022-08-16T01:31:54.274316
10378.1/1687388
author
name Linda Thomas
email linda.thomas@csiro.au
orcid https://orcid.org/0000-0001-8989-8109
organisation
name CSIRO Oceans and Atmosphere
ror https://ror.org/026nh4520
dataset_info
name Test dataset for Sponges
description Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec eget tempus est. Sed a viverra dolor, sed pellentesque massa. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean sit amet consectetur lacus, non ultrices lectus. Sed auctor sed leo vel vehicula. Suspendisse tristique felis eu tempor interdum. Praesent vitae quam sagittis, pellentesque felis sed, tristique leo. Donec sagittis tempor nibh, vel porttitor sapien vehicula ut. Pellentesque fringilla gravida euismod. Praesent eget lorem bibendum, ultrices arcu condimentum, consequat eros. Aenean imperdiet erat at egestas vulputate. Integer cursus mauris eget lectus fermentum laoreet. Donec at erat est. Curabitur posuere est non rutrum ultrices. Donec vitae vehicula dui. Etiam nulla risus, vehicula ac facilisis a, lacinia a lorem. Pellentesque tempor accumsan ligula, vitae pulvinar tellus rutrum non. Maecenas eget diam ut felis tincidunt efficitur. Nam magna turpis, placerat eu diam nec, euismod tincidunt velit. Phasellus ullamcorper luctus velit eget blandit. Proin justo orci, commodo eget ornare nec, fringilla eu est. Nam a ex ut ante mollis ornare. Phasellus non venenatis dolor. Cras mauris erat, tincidunt ac gravida id, facilisis a risus. Ut in libero leo. Quisque volutpat venenatis dolor, ut lacinia nibh cursus vel. Suspendisse eu tincidunt sem. Maecenas porttitor eros tellus. Integer porta fringilla condimentum. Mauris eget molestie magna. Aenean nec lacinia mauris. Phasellus sit amet ligula felis. Etiam lacinia ac erat id sollicitudin. Suspendisse vel sem orci. Donec iaculis rhoncus euismod.
publisher
name CSIRO Oceans and Atmosphere
ror https://ror.org/026nh4520
created_date 2022-07-11
published_date 2020-01-11
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords None
version v1
@graph
  • datePublished 2022-07-11
    dateCreated 2022-07-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-8989-8109
    about
    @id ./
    dateModified 2022-07-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Linda Thomas
    @id https://orcid.org/0000-0001-8989-8109
    @type
    • Person
    • ContactPoint
    email linda.thomas@csiro.au
    worksFor
    @id https://ror.org/026nh4520
  • name CSIRO Oceans and Atmosphere
    @type Organization
    @id https://ror.org/026nh4520
  • datePublished 2020-01-11
    identifier 10378.1/1687388
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2022-07-11
    @type Dataset
    name Test dataset for Sponges
    publisher
    @id https://ror.org/026nh4520
    description Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec eget tempus est. Sed a viverra dolor, sed pellentesque massa. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean sit amet consectetur lacus, non ultrices lectus. Sed auctor sed leo vel vehicula. Suspendisse tristique felis eu tempor interdum. Praesent vitae quam sagittis, pellentesque felis sed, tristique leo. Donec sagittis tempor nibh, vel porttitor sapien vehicula ut. Pellentesque fringilla gravida euismod. Praesent eget lorem bibendum, ultrices arcu condimentum, consequat eros. Aenean imperdiet erat at egestas vulputate. Integer cursus mauris eget lectus fermentum laoreet. Donec at erat est. Curabitur posuere est non rutrum ultrices. Donec vitae vehicula dui. Etiam nulla risus, vehicula ac facilisis a, lacinia a lorem. Pellentesque tempor accumsan ligula, vitae pulvinar tellus rutrum non. Maecenas eget diam ut felis tincidunt efficitur. Nam magna turpis, placerat eu diam nec, euismod tincidunt velit. Phasellus ullamcorper luctus velit eget blandit. Proin justo orci, commodo eget ornare nec, fringilla eu est. Nam a ex ut ante mollis ornare. Phasellus non venenatis dolor. Cras mauris erat, tincidunt ac gravida id, facilisis a risus. Ut in libero leo. Quisque volutpat venenatis dolor, ut lacinia nibh cursus vel. Suspendisse eu tincidunt sem. Maecenas porttitor eros tellus. Integer porta fringilla condimentum. Mauris eget molestie magna. Aenean nec lacinia mauris. Phasellus sit amet ligula felis. Etiam lacinia ac erat id sollicitudin. Suspendisse vel sem orci. Donec iaculis rhoncus euismod.
    @id ./
    version v1
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687388/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687388/
2022-07-11T05:25:04.342668 2022-07-11T05:25:04.342668
10378.1/1688829
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688829
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688829/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688829/
2022-08-15T04:27:59.090307 2022-08-15T04:27:59.090307
10378.1/1689742
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1689742
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689742/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689742/
2022-08-16T02:33:16.759407 2022-08-16T02:33:16.759407
10378.1/1690492
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690492
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690492/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690492/
2022-09-01T01:58:47.637889 2022-09-01T01:58:47.637889
10378.1/1690149
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-24
    dateCreated 2022-08-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1690149
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690149/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690149/
2022-08-24T01:34:26.705745 2022-08-24T01:34:27.004476
10378.1/1688800
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688800
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688800/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688800/
2022-08-15T04:19:16.783123 2022-08-15T04:19:16.783123
10378.1/1689656
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689656
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689656/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689656/
2022-08-16T01:31:14.356252 2022-08-16T01:31:14.356252
10378.1/1688889
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688889
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688889/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688889/
2022-08-15T04:32:14.432553 2022-08-15T04:32:14.432553
10378.1/1689767
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-17
    dateCreated 2022-08-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1689767
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689767/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689767/
2022-08-17T23:49:42.750218 2022-08-17T23:49:42.750218
10378.1/1688802
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688802
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688802/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688802/
2022-08-15T04:19:28.633529 2022-08-15T04:19:28.633529
10378.1/1687276
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687276
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687276/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687276/
2022-06-30T00:43:07.367066 2022-06-30T00:43:07.667875
10378.1/1688899
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688899
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688899/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688899/
2022-08-15T04:33:02.801640 2022-08-15T04:33:02.801640
10378.1/1689410
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689410
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689410/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689410/
2022-08-15T07:05:45.765458 2022-08-15T07:05:45.765458
10378.1/1689196
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689196
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689196/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689196/
2022-08-15T05:12:43.588537 2022-08-15T05:12:43.588537
10378.1/1689267
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689254
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689254
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689267
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689267/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689267/
2022-08-15T05:46:35.644261 2022-08-15T05:46:35.644261
10378.1/1689383
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689383
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689383/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689383/
2022-08-15T05:54:17.102559 2022-08-15T05:54:17.102559
10378.1/1689675
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689675
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689675/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689675/
2022-08-16T01:32:42.463064 2022-08-16T01:32:42.463064
10378.1/1689036
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689036
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689036/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689036/
2022-08-15T04:43:24.640315 2022-08-15T04:43:24.640315
10378.1/1688253
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688253
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688253/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688253/
2022-08-09T05:48:28.904796 2022-08-09T05:48:28.904796
10378.1/1688939
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688939
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688939/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688939/
2022-08-15T04:35:57.123154 2022-08-15T04:35:57.123154
10378.1/1688748
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688742
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688742
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688748
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688748/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688748/
2022-08-15T03:02:26.101487 2022-08-15T03:02:26.101487
10378.1/1688544
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688544
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688544/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688544/
2022-08-12T06:23:42.412828 2022-08-12T06:23:42.412828
10378.1/1689530
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689530
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689530/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689530/
2022-08-15T07:15:00.012850 2022-08-15T07:15:00.012850
10378.1/1689377
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689377
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689377/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689377/
2022-08-15T05:53:57.529789 2022-08-15T05:53:57.529789
10378.1/1688978
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688978
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688978/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688978/
2022-08-15T04:38:54.298073 2022-08-15T04:38:54.298073
10378.1/1686900
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-08
    dateCreated 2022-06-08
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-08
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1686900
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686900/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686900/
2022-06-08T05:29:41.306181 2022-06-08T05:29:41.306181
10378.1/1688520
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688469
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688469
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688520
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688520/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688520/
2022-08-12T06:20:11.078907 2022-08-12T06:20:11.078907
10378.1/1688586
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688586
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688586/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688586/
2022-08-12T06:26:33.518130 2022-08-12T06:26:33.518130
10378.1/1688987
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688987
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688987/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688987/
2022-08-15T04:39:31.599915 2022-08-15T04:39:31.599915
10378.1/1689644
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689644
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689644/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689644/
2022-08-16T01:30:18.244985 2022-08-16T01:30:18.244985
10378.1/1688991
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688991
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688991/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688991/
2022-08-15T04:39:49.498621 2022-08-15T04:39:49.498621
10378.1/1689469
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689469
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689469/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689469/
2022-08-15T07:10:27.116593 2022-08-15T07:10:27.116593
10378.1/1689375
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689375
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689375/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689375/
2022-08-15T05:53:51.104611 2022-08-15T05:53:51.104611
10378.1/1690147
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-24
    dateCreated 2022-08-24
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690147
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690147/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690147/
2022-08-24T01:34:23.242759 2022-08-24T01:34:23.242759
10378.1/1689051
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689051
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689051/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689051/
2022-08-15T04:44:35.169606 2022-08-15T04:44:35.169606
10378.1/1688311
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688311
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688311/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688311/
2022-08-10T09:17:14.274628 2022-08-10T09:17:14.274628
10378.1/1689719
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689719
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689719/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689719/
2022-08-16T01:47:09.935168 2022-08-16T01:47:09.935168
10378.1/1688493
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688462
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688462
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688493
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688493/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688493/
2022-08-12T06:18:15.135529 2022-08-12T06:18:15.135529
10378.1/1689699
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689699
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689699/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689699/
2022-08-16T01:45:43.939785 2022-08-16T01:45:43.939785
10378.1/1687998
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687998
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687998/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687998/
2022-08-04T01:28:26.803272 2022-08-04T01:28:26.803272
10378.1/1688962
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688962
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688962/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688962/
2022-08-15T04:37:43.989414 2022-08-15T04:37:43.989414
10378.1/1690352
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690352
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690352/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690352/
2022-09-01T01:43:11.644346 2022-09-01T01:43:11.644346
10378.1/1688673
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688647
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688647
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688673
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688673/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688673/
2022-08-15T02:48:20.957213 2022-08-15T02:48:20.957213
10378.1/1687367
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-07-07
    dateCreated 2022-07-07
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-07
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687367
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687367/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687367/
2022-07-07T06:33:42.890707 2022-07-07T06:33:42.890707
10378.1/1689662
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689662
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689662/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689662/
2022-08-16T01:31:40.820604 2022-08-16T01:31:40.820604
10378.1/1689624
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689624
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689624/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689624/
2022-08-16T01:28:42.914717 2022-08-16T01:28:42.914717
10378.1/1689016
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689016
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689016/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689016/
2022-08-15T04:41:52.117848 2022-08-15T04:41:52.117848
10378.1/1690469
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690430
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690430
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690469
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690469/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690469/
2022-09-01T01:55:16.851417 2022-09-01T01:55:16.851417
10378.1/1689770
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1689770
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689770/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689770/
2022-08-18T00:23:39.838235 2022-08-18T00:23:39.838235
10378.1/1688263
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688263
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688263/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688263/
2022-08-09T23:49:52.362891 2022-08-09T23:49:52.362891
10378.1/1688260
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-09
    dateCreated 2022-08-09
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-09
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688260
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688260/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688260/
2022-08-09T10:22:40.416257 2022-08-09T10:22:40.416257
10378.1/1688536
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688457
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688457
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688536
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688536/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688536/
2022-08-12T06:21:17.215216 2022-08-12T06:21:17.215216
10378.1/1690378
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690378
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690378/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690378/
2022-09-01T01:44:59.430845 2022-09-01T01:44:59.430845
10378.1/1688480
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688462
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688462
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688480
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688480/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688480/
2022-08-12T06:17:27.714710 2022-08-12T06:17:27.714710
10378.1/1689621
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689621
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689621/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689621/
2022-08-16T01:28:29.068875 2022-08-16T01:28:29.068875
10378.1/1688715
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688715
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688715/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688715/
2022-08-15T02:54:27.397038 2022-08-15T02:54:27.397038
10378.1/1688471
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688484
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688484
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688471
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688471/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688471/
2022-08-12T06:18:19.970336 2022-08-12T06:18:19.970336
10378.1/1688746
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688742
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688742
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688746
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688746/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688746/
2022-08-15T03:02:19.760451 2022-08-15T03:02:19.760451
10378.1/1689431
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689431
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689431/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689431/
2022-08-15T07:07:33.398218 2022-08-15T07:07:33.398218
10378.1/1688936
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688936
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688936/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688936/
2022-08-15T04:35:43.217533 2022-08-15T04:35:43.217533
10378.1/1689475
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689475
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689475/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689475/
2022-08-15T07:10:52.066135 2022-08-15T07:10:52.066135
10378.1/1690345
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690345
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690345/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690345/
2022-09-01T01:42:49.959845 2022-09-01T01:42:49.959845
10378.1/1688551
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688551
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688551/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688551/
2022-08-12T06:24:04.045922 2022-08-12T06:24:04.045922
10378.1/1689007
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689007
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689007/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689007/
2022-08-15T04:41:06.740294 2022-08-15T04:41:06.740294
10378.1/1687858
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687858
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687858/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687858/
2022-08-02T05:22:33.879712 2022-08-02T05:22:33.879712
10378.1/1689775
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1689775
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689775/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689775/
2022-08-18T00:58:15.202775 2022-08-18T00:58:15.202775
10378.1/1689611
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689611
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689611/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689611/
2022-08-16T01:27:38.149691 2022-08-16T01:27:38.149691
10378.1/1690324
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690324
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690324/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690324/
2022-09-01T01:38:41.579653 2022-09-01T01:38:41.579653
10378.1/1689492
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689492
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689492/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689492/
2022-08-15T07:12:10.908941 2022-08-15T07:12:10.908941
10378.1/1689385
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689385
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689385/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689385/
2022-08-15T05:54:23.310633 2022-08-15T05:54:23.310633
10378.1/1689413
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689413
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689413/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689413/
2022-08-15T07:05:55.423929 2022-08-15T07:05:55.423929
10378.1/1689744
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1689744
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689744/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689744/
2022-08-16T02:33:24.488849 2022-08-16T02:33:24.793216
10378.1/1689210
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689210
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689210/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689210/
2022-08-15T05:13:49.062212 2022-08-15T05:13:49.062212
10378.1/1688878
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688878
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688878/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688878/
2022-08-15T04:31:19.683998 2022-08-15T04:31:19.683998
10378.1/1689415
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689415
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689415/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689415/
2022-08-15T07:06:18.481656 2022-08-15T07:06:18.481656
10378.1/1690366
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690358
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690358
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690366
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690366/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690366/
2022-09-01T01:44:22.183378 2022-09-01T01:44:22.183378
10378.1/1688868
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688868
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688868/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688868/
2022-08-15T04:30:38.457455 2022-08-15T04:30:38.457455
10378.1/1689507
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689507
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689507/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689507/
2022-08-15T07:13:17.009393 2022-08-15T07:13:17.009393
10378.1/1689702
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689702
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689702/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689702/
2022-08-16T01:45:57.719496 2022-08-16T01:45:57.719496
10378.1/1690489
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690489
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690489/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690489/
2022-09-01T01:56:45.847329 2022-09-01T01:56:45.847329
10378.1/1687308
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-07-04
    dateCreated 2022-07-04
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-07-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687308
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687308/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687308/
2022-07-04T01:41:12.039258 2022-07-04T01:41:12.039258
10378.1/1689384
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689384
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689384/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689384/
2022-08-15T05:54:20.205455 2022-08-15T05:54:20.205455
10378.1/1688030
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-04
    dateCreated 2022-08-04
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-04
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688030
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688030/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688030/
2022-08-04T05:38:54.133251 2022-08-04T05:38:54.133251
10378.1/1689156
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689156
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689156/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689156/
2022-08-15T05:09:34.644169 2022-08-15T05:09:34.644169
10378.1/1687220
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1687220
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687220/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687220/
2022-06-27T01:29:44.008441 2022-06-27T01:29:44.008441
10378.1/1689667
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689667
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689667/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689667/
2022-08-16T01:32:04.506078 2022-08-16T01:32:04.506078
10378.1/1689455
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689455
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689455/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689455/
2022-08-15T07:09:25.529765 2022-08-15T07:09:25.529765
10378.1/1689402
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689402
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689402/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689402/
2022-08-15T07:05:16.617965 2022-08-15T07:05:16.617965
10378.1/1688904
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688904
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688904/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688904/
2022-08-15T04:33:25.011822 2022-08-15T04:33:25.011822
10378.1/1687362
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-07-07
    dateCreated 2022-07-07
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-07
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687362
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687362/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687362/
2022-07-07T05:55:24.515053 2022-07-07T05:55:24.515053
10378.1/1688926
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688926
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688926/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688926/
2022-08-15T04:34:58.610875 2022-08-15T04:34:58.610875
10378.1/1689140
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689140
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689140/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689140/
2022-08-15T05:08:01.190750 2022-08-15T05:08:01.190750
10378.1/1689391
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689391
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689391/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689391/
2022-08-15T05:54:42.262214 2022-08-15T05:54:42.262214
10378.1/1689833
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-18
    dateCreated 2022-08-18
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-18
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1689833
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689833/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689833/
2022-08-18T05:52:49.667269 2022-08-18T05:52:49.667269
10378.1/1687274
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687274
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687274/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687274/
2022-06-30T00:42:59.091537 2022-06-30T00:42:59.091537
10378.1/1689277
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689254
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689254
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689277
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689277/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689277/
2022-08-15T05:47:11.562807 2022-08-15T05:47:11.562807
10378.1/1689429
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689429
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689429/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689429/
2022-08-15T07:07:22.020973 2022-08-15T07:07:22.020973
10378.1/1690323
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690323
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690323/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690323/
2022-09-01T01:38:38.141785 2022-09-01T01:38:38.141785
10378.1/1688771
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688747
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688747
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688771
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688771/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688771/
2022-08-15T03:03:55.559895 2022-08-15T03:03:55.559895
10378.1/1688847
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688847
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688847/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688847/
2022-08-15T04:29:11.484421 2022-08-15T04:29:11.484421
10378.1/1690235
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690235
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690235/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690235/
2022-08-30T02:16:08.877761 2022-08-30T02:16:08.877761
10378.1/1689657
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689657
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689657/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689657/
2022-08-16T01:31:17.574034 2022-08-16T01:31:17.574034
10378.1/1687067
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687067
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687067/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687067/
2022-06-17T06:45:00.730073 2022-06-17T06:47:24.696078
10378.1/1688882
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688882
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688882/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688882/
2022-08-15T04:31:37.401578 2022-08-15T04:31:37.401578
10378.1/1688910
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688910
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688910/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688910/
2022-08-15T04:33:47.183197 2022-08-15T04:33:47.183197
10378.1/1688869
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688869
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688869/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688869/
2022-08-15T04:30:41.729441 2022-08-15T04:30:41.729441
10378.1/1690476
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690430
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690430
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690476
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690476/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690476/
2022-09-01T01:55:52.893020 2022-09-01T01:55:52.893020
10378.1/1689195
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689195
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689195/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689195/
2022-08-15T05:12:40.432839 2022-08-15T05:12:40.432839
10378.1/1689487
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689487
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689487/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689487/
2022-08-15T07:11:46.489431 2022-08-15T07:11:46.489431
10378.1/1689084
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689084
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689084/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689084/
2022-08-15T05:02:56.424862 2022-08-15T05:02:56.424862
10378.1/1689055
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689055
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689055/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689055/
2022-08-15T04:44:58.510069 2022-08-15T04:44:58.510069
10378.1/1689461
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689461
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689461/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689461/
2022-08-15T07:09:48.927778 2022-08-15T07:09:48.927778
10378.1/1689596
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689596
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689596/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689596/
2022-08-16T01:26:27.851548 2022-08-16T01:26:27.851548
10378.1/1687279
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-30
    dateCreated 2022-06-30
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687279
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687279/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687279/
2022-06-30T01:18:30.371979 2022-06-30T01:18:30.371979
10378.1/1690416
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690416
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690416/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690416/
2022-09-01T01:48:06.036677 2022-09-01T01:48:06.036677
10378.1/1686874
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1686874
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686874/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686874/
2022-06-06T07:15:23.245480 2022-06-06T07:15:23.245480
10378.1/1686901
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-08
    dateCreated 2022-06-08
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-08
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1686901
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686901/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686901/
2022-06-08T05:29:45.666145 2022-06-08T05:29:45.666145
10378.1/1687594
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-07-19
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-19
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687594
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687594/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687594/
2022-07-19T23:51:26.284765 2022-07-19T23:51:26.284765
10378.1/1688970
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688970
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688970/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688970/
2022-08-15T04:38:22.500871 2022-08-15T04:38:22.500871
10378.1/1690440
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690440
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690440/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690440/
2022-09-01T01:53:20.353107 2022-09-01T01:53:20.353107
10378.1/1687202
author
name Peter Baker
email peter.baker122@csiro.au
orcid https://orcid.org/0000-0001-5228-6336
organisation
name SpinalCure Australia
ror https://ror.org/05291fa13
dataset_info
name Test
description Test
publisher
name John T. Reid Charitable Trusts
ror https://ror.org/017xs2h64
created_date 2022-06-24
published_date 2022-06-24
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords None
version None
@graph
  • datePublished 2022-06-24
    dateCreated 2022-06-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-5228-6336
    about
    @id ./
    dateModified 2022-06-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0001-5228-6336
    @type
    • Person
    • ContactPoint
    email peter.baker122@csiro.au
    worksFor
    @id https://ror.org/05291fa13
  • name SpinalCure Australia
    @type Organization
    @id https://ror.org/05291fa13
  • datePublished 2022-06-24
    identifier 10378.1/1687202
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2022-06-24
    @type Dataset
    name Test
    publisher
    @id https://ror.org/017xs2h64
    description Test
    @id ./
  • name John T. Reid Charitable Trusts
    @type Organization
    @id https://ror.org/017xs2h64
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687202/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687202/
2022-06-24T01:30:11.651085 2022-06-24T01:52:50.889369
10378.1/1687235
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-27
    dateCreated 2022-06-27
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-27
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687235
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687235/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687235/
2022-06-27T04:54:18.920024 2022-06-27T04:54:18.920024
10378.1/1689314
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689314
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689314/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689314/
2022-08-15T05:49:32.390332 2022-08-15T05:49:32.390332
10378.1/1688547
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688537
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688537
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688547
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688547/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688547/
2022-08-12T06:23:51.639808 2022-08-12T06:23:51.639808
10378.1/1688735
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688726
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688726
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688735
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688735/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688735/
2022-08-15T03:00:43.646264 2022-08-15T03:00:43.646264
10378.1/1689721
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689685
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689685
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689721
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689721/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689721/
2022-08-16T01:47:19.733896 2022-08-16T01:47:19.733896
10378.1/1686829
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1686829
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686829/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686829/
2022-06-06T00:50:03.746456 2022-06-06T00:50:03.746456
10378.1/1690307
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-31
    dateCreated 2022-08-31
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-31
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690307
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690307/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690307/
2022-08-31T05:58:52.688737 2022-08-31T05:58:52.688737
10378.1/1688915
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688915
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688915/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688915/
2022-08-15T04:34:11.418934 2022-08-15T04:34:11.418934
10378.1/1688702
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688702
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688702/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688702/
2022-08-15T02:53:26.063772 2022-08-15T02:53:26.063772
10378.1/1688403
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688385
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688385
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688403
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688403/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688403/
2022-08-12T06:02:25.558683 2022-08-12T06:02:25.558683
10378.1/1688762
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688747
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688747
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688762
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688762/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688762/
2022-08-15T03:03:09.067447 2022-08-15T03:03:09.067447
10378.1/1688950
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688950
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688950/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688950/
2022-08-15T04:36:48.252212 2022-08-15T04:36:48.252212
10378.1/1689191
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689191
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689191/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689191/
2022-08-15T05:12:21.202681 2022-08-15T05:12:21.202681
10378.1/1687302
author
name Linda Thomas
email linda.thomas@csiro.au
orcid https://orcid.org/0000-0001-8989-8109
organisation
name CSIRO Oceans and Atmosphere
ror https://ror.org/026nh4520
dataset_info
name Test dataset of coral types at Lady Musgrave Island
description It went through such rapid contortions that the little bear was forced to change his hold on it so many times he became confused in the darkness, and could not, for the life of him, tell whether he held the sheep right side up, or upside down. But that point was decided for him a moment later by the animal itself, who, with a sudden twist, jabbed its horns so hard into his lowest ribs that he gave a grunt of anger and disgust.
publisher
name Sydney Institute of Marine Science
ror https://ror.org/03ry2ah66
created_date 2007-01-30
published_date 2001-01-01
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords
  • coral
version None
@graph
  • datePublished 2022-07-01
    dateCreated 2022-07-01
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-8989-8109
    about
    @id ./
    dateModified 2022-07-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Linda Thomas
    @id https://orcid.org/0000-0001-8989-8109
    @type
    • Person
    • ContactPoint
    email linda.thomas@csiro.au
    worksFor
    @id https://ror.org/026nh4520
  • name CSIRO Oceans and Atmosphere
    @type Organization
    @id https://ror.org/026nh4520
  • datePublished 2001-01-01
    identifier 10378.1/1687302
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2007-01-30
    keywords
    • coral
    @type Dataset
    name Test dataset of coral types at Lady Musgrave Island
    publisher
    @id https://ror.org/03ry2ah66
    description It went through such rapid contortions that the little bear was forced to change his hold on it so many times he became confused in the darkness, and could not, for the life of him, tell whether he held the sheep right side up, or upside down. But that point was decided for him a moment later by the animal itself, who, with a sudden twist, jabbed its horns so hard into his lowest ribs that he gave a grunt of anger and disgust.
    @id ./
  • name Sydney Institute of Marine Science
    @type Organization
    @id https://ror.org/03ry2ah66
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687302/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687302/
2022-07-01T03:06:16.577117 2022-07-01T03:06:16.577117
10378.1/1688752
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688747
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688747
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688752
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688752/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688752/
2022-08-15T03:02:38.786428 2022-08-15T03:02:38.786428
10378.1/1688293
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688293
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688293/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688293/
2022-08-10T01:47:07.771960 2022-08-10T01:47:07.771960
10378.1/1688992
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688992
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688992/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688992/
2022-08-15T04:39:52.601296 2022-08-15T04:39:52.601296
10378.1/1690156
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-24
    dateCreated 2022-08-24
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-24
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1690156
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690156/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690156/
2022-08-24T06:06:41.037763 2022-08-24T06:06:41.037763
10378.1/1687865
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687865
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687865/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687865/
2022-08-02T05:37:05.894329 2022-08-02T05:37:06.194340
10378.1/1688812
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688785
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688785
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688812
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688812/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688812/
2022-08-15T04:20:16.906109 2022-08-15T04:20:16.906109
10378.1/1688337
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688337
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688337/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688337/
2022-08-12T04:25:02.296860 2022-08-12T04:25:02.296860
10378.1/1688922
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688922
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688922/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688922/
2022-08-15T04:34:40.950545 2022-08-15T04:34:40.950545
10378.1/1689131
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689131
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689131/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689131/
2022-08-15T05:07:08.791137 2022-08-15T05:07:08.791137
10378.1/1688983
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688867
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688867
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688983
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688983/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688983/
2022-08-15T04:39:15.295255 2022-08-15T04:39:15.295255
10378.1/1688301
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1688301
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688301/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688301/
2022-08-10T04:42:24.372961 2022-08-10T04:42:24.372961
10378.1/1688318
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-11
    dateCreated 2022-08-11
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-11
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688318
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688318/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688318/
2022-08-11T00:14:38.789481 2022-08-11T00:14:38.789481
10378.1/1689549
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689549
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689549/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689549/
2022-08-16T01:23:30.344925 2022-08-16T01:23:30.344925
10378.1/1688933
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688933
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688933/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688933/
2022-08-15T04:35:30.255153 2022-08-15T04:35:30.255153
10378.1/1688315
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688315
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688315/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688315/
2022-08-10T09:23:32.882623 2022-08-10T09:23:32.882623
10378.1/1688336
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688336
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688336/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688336/
2022-08-12T04:21:09.970145 2022-08-12T04:21:09.970145
10378.1/1689420
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689420
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689420/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689420/
2022-08-15T07:06:38.462188 2022-08-15T07:06:38.462188
10378.1/1689011
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688840
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688840
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689011
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689011/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689011/
2022-08-15T04:41:28.661434 2022-08-15T04:41:28.661434
10378.1/1689236
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689236
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689236/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689236/
2022-08-15T05:15:43.575723 2022-08-15T05:15:43.575723
10378.1/1690450
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690450
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690450/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690450/
2022-09-01T01:53:58.073492 2022-09-01T01:53:58.073492
10378.1/1689163
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689064
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689064
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689163
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689163/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689163/
2022-08-15T05:10:11.801658 2022-08-15T05:10:11.801658
10378.1/1689047
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689047
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689047/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689047/
2022-08-15T04:44:17.099795 2022-08-15T04:44:17.099795
10378.1/1688928
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688928
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688928/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688928/
2022-08-15T04:35:08.288510 2022-08-15T04:35:08.288510
10378.1/1688775
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1688775
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688775/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688775/
2022-08-15T03:04:23.967886 2022-08-15T03:04:23.967886
10378.1/1688903
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688903
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688903/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688903/
2022-08-15T04:33:21.961691 2022-08-15T04:33:21.961691
10378.1/1690453
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690420
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690420
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690453
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690453/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690453/
2022-09-01T01:54:10.810270 2022-09-01T01:54:10.810270
10378.1/1688468
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688462
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688462
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688468
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688468/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688468/
2022-08-12T06:16:42.788476 2022-08-12T06:16:42.788476
10378.1/1689748
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1689748
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689748/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689748/
2022-08-16T07:07:18.874072 2022-08-16T07:07:18.874072
10378.1/1689339
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689339
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689339/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689339/
2022-08-15T05:51:27.407608 2022-08-15T05:51:27.407608
10378.1/1689063
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689063
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689063/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689063/
2022-08-15T05:01:35.720416 2022-08-15T05:01:35.720416
10378.1/1689292
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689292
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689292/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689292/
2022-08-15T05:48:04.635591 2022-08-15T05:48:04.635591
10378.1/1686824
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-06-06
    dateCreated 2022-06-06
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-06-06
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1686824
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686824/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686824/
2022-06-06T00:12:59.334226 2022-06-06T00:12:59.334226
10378.1/1688593
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688555
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688555
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688593
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688593/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688593/
2022-08-12T06:27:08.589468 2022-08-12T06:27:08.589468
10378.1/1687264
author
name Peter Baker
email peter.baker122@csiro.au
orcid https://orcid.org/0000-0002-6900-6983
organisation
name Australian National University
ror https://ror.org/019wvm592
dataset_info
name Test
description Test
publisher
name CSIRO Oceans and Atmosphere
ror https://ror.org/026nh4520
created_date 2022-06-28
published_date 2022-06-28
license https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
keywords None
version None
@graph
  • datePublished 2022-06-28
    dateCreated 2022-06-28
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-6900-6983
    about
    @id ./
    dateModified 2022-06-28
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-6900-6983
    @type
    • Person
    • ContactPoint
    email peter.baker122@csiro.au
    worksFor
    @id https://ror.org/019wvm592
  • name Australian National University
    @type Organization
    @id https://ror.org/019wvm592
  • datePublished 2022-06-28
    identifier 10378.1/1687264
    license
    @id https://gbrrestoration.github.io/rrap-mds-knowledge-hub/information-system/licenses.html#copyright-all-rights-reserved-
    dateCreated 2022-06-28
    @type Dataset
    name Test
    publisher
    @id https://ror.org/026nh4520
    description Test
    @id ./
  • name CSIRO Oceans and Atmosphere
    @type Organization
    @id https://ror.org/026nh4520
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687264/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687264/
2022-06-28T07:19:31.146407 2022-06-28T07:19:31.146407
10378.1/1688398
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688385
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688385
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688398
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688398/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688398/
2022-08-12T06:02:09.728902 2022-08-12T06:02:09.728902
10378.1/1689638
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689572
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689572
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689638
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689638/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689638/
2022-08-16T01:29:51.265510 2022-08-16T01:29:51.265510
10378.1/1687588
author
name Jonathan Yu
email jonathan.yu@csiro.au
orcid https://orcid.org/0000-0002-2237-0091
organisation
name CSIRO Land and Water
ror https://ror.org/057xz1h85
dataset_info
name Dataset produced by 2nd model processing step
description Dataset produced by 2nd model processing step
publisher
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
created_date 2022-07-11
published_date 2022-07-11
license https://creativecommons.org/licenses/by/4.0/
keywords None
version 1.0
@graph
  • datePublished 2022-07-19
    dateCreated 2022-07-19
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-2237-0091
    about
    @id ./
    dateModified 2022-07-19
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Jonathan Yu
    @id https://orcid.org/0000-0002-2237-0091
    @type
    • Person
    • ContactPoint
    email jonathan.yu@csiro.au
    worksFor
    @id https://ror.org/057xz1h85
  • name CSIRO Land and Water
    @type Organization
    @id https://ror.org/057xz1h85
  • datePublished 2022-07-11
    identifier 10378.1/1687588
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-07-11
    @type Dataset
    name Dataset produced by 2nd model processing step
    publisher
    @id https://ror.org/03qn8fb07
    description Dataset produced by 2nd model processing step
    @id ./
    version 1.0
  • name Commonwealth Scientific and Industrial Research Organisation
    @type Organization
    @id https://ror.org/03qn8fb07
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687588/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687588/
2022-07-19T08:43:36.414628 2022-07-19T08:43:36.414628
10378.1/1688313
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688313
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688313/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688313/
2022-08-10T09:22:14.447637 2022-08-10T09:22:14.447637
10378.1/1688378
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688370
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688370
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688378
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688378/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688378/
2022-08-12T06:00:00.648224 2022-08-12T06:00:00.648224
10378.1/1688314
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-10
    dateCreated 2022-08-10
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-10
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688314
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688314/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688314/
2022-08-10T09:22:29.963003 2022-08-10T09:22:29.963003
10378.1/1688836
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688836
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688836/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688836/
2022-08-15T04:28:24.720120 2022-08-15T04:28:24.720120
10378.1/1686980
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-06-17
    dateCreated 2022-06-17
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-06-17
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1686980
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1686980/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1686980/
2022-06-17T05:46:30.793497 2022-06-17T05:46:30.793497
10378.1/1688669
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688658
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688658
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688669
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688669/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688669/
2022-08-15T02:48:02.044618 2022-08-15T02:48:02.044618
10378.1/1688512
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688462
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-12
    dateCreated 2022-08-12
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-12
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688462
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688512
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688512/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688512/
2022-08-12T06:19:35.562251 2022-08-12T06:19:35.562251
10378.1/1687905
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-08-03
    dateCreated 2022-08-03
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-03
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687905
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687905/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687905/
2022-08-03T05:17:38.548882 2022-08-03T05:17:38.548882
10378.1/1688767
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688747
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688747
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688767
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688767/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688767/
2022-08-15T03:03:33.983898 2022-08-15T03:03:33.983898
10378.1/1688849
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688849
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688849/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688849/
2022-08-15T04:29:22.228444 2022-08-15T04:29:22.228444
10378.1/1689033
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689033
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689033/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689033/
2022-08-15T04:43:09.124350 2022-08-15T04:43:09.124350
10378.1/1689371
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689356
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689356
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689371
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689371/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689371/
2022-08-15T05:53:37.877027 2022-08-15T05:53:37.877027
10378.1/1689412
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689412
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689412/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689412/
2022-08-15T07:05:52.125089 2022-08-15T07:05:52.125089
10378.1/1688923
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688813
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688813
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688923
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688923/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688923/
2022-08-15T04:34:44.003921 2022-08-15T04:34:44.003921
10378.1/1690229
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690229
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690229/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690229/
2022-08-30T01:32:57.750287 2022-08-30T01:32:57.750287
10378.1/1688707
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688707
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688707/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688707/
2022-08-15T02:53:51.496343 2022-08-15T02:53:51.496343
10378.1/1689304
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689279
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689279
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689304
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689304/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689304/
2022-08-15T05:48:46.924747 2022-08-15T05:48:46.924747
10378.1/1687489
author
name Peter Baker
email peter.baker1626@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name ANU
ror https://ror.org/ANUfake
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror https://ror.org/UCFake
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
version 1.2.4
@graph
  • datePublished 2022-07-14
    dateCreated 2022-07-14
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-07-14
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id https://ror.org/ANUfake
  • name ANU
    @type Organization
    @id https://ror.org/ANUfake
  • datePublished 2021-12-25
    identifier 10378.1/1687489
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id https://ror.org/UCFake
    description Results of counterfactual model run
    @id ./
    version 1.2.4
  • name University of Canberra
    @type Organization
    @id https://ror.org/UCFake
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687489/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687489/
2022-07-14T01:36:09.645808 2022-07-14T01:36:09.645808
10378.1/1687877
author
name Ross Petridis
email rosspetridis@gmail.com
orcid https://orcid.org/0000-0002-7190-5187
organisation
name University of Melbourne
ror https://ror.org/00rqy9422
dataset_info
name Coral results 2021-02-30 - updated
description Results of counterfactual model run - updated
publisher
name University of Melbourne
ror https://ror.org/00rqy9422
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
  • keyword2
  • coralLover
version 1.2.6
@graph
  • datePublished 2022-08-02
    dateCreated 2022-08-02
    @type CreativeWork
    author
    @id https://orcid.org/0000-0002-7190-5187
    about
    @id ./
    dateModified 2022-08-02
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Ross Petridis
    @id https://orcid.org/0000-0002-7190-5187
    @type
    • Person
    • ContactPoint
    email rosspetridis@gmail.com
    worksFor
    @id https://ror.org/00rqy9422
  • name University of Melbourne
    @type Organization
    @id https://ror.org/00rqy9422
  • datePublished 2021-12-25
    identifier 10378.1/1687877
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    keywords
    • keyword1
    • keyword2
    • coralLover
    @type Dataset
    name Coral results 2021-02-30 - updated
    publisher
    @id https://ror.org/00rqy9422
    description Results of counterfactual model run - updated
    @id ./
    version 1.2.6
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1687877/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1687877/
2022-08-02T07:15:46.582419 2022-08-02T07:15:46.889424
10378.1/1689653
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689543
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-16
    dateCreated 2022-08-16
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-16
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689543
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689653
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689653/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689653/
2022-08-16T01:31:00.545530 2022-08-16T01:31:00.545530
10378.1/1689466
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689466
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689466/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689466/
2022-08-15T07:10:12.877182 2022-08-15T07:10:12.877182
10378.1/1688092
author
name Andrew Freebairn
email andrew.freebairn@csiro.au
orcid https://orcid.org/0000-0001-9429-6559
organisation
name CSIRO
ror https://ror.org/03qn8fb07
dataset_info
name MVP Demo Dataset
description For demonstration purposes
publisher
name Andrew
ror https://ror.org/057xz1h85
created_date 2022-08-05
published_date 2022-08-05
license https://creativecommons.org/licenses/by/4.0/
keywords
  • keyword1
version 0.0.1
@graph
  • datePublished 2022-08-05
    dateCreated 2022-08-05
    @type CreativeWork
    author
    @id https://orcid.org/0000-0001-9429-6559
    about
    @id ./
    dateModified 2022-08-05
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Andrew Freebairn
    @id https://orcid.org/0000-0001-9429-6559
    @type
    • Person
    • ContactPoint
    email andrew.freebairn@csiro.au
    worksFor
    @id https://ror.org/03qn8fb07
  • name CSIRO
    @type Organization
    @id https://ror.org/03qn8fb07
  • datePublished 2022-08-05
    identifier 10378.1/1688092
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-05
    keywords
    • keyword1
    @type Dataset
    name MVP Demo Dataset
    publisher
    @id https://ror.org/057xz1h85
    description For demonstration purposes
    @id ./
    version 0.0.1
  • name Andrew
    @type Organization
    @id https://ror.org/057xz1h85
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688092/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688092/
2022-08-05T07:52:22.399583 2022-08-05T07:52:22.399583
10378.1/1690344
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1690326
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-09-01
    dateCreated 2022-09-01
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-09-01
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1690326
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1690344
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690344/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690344/
2022-09-01T01:42:46.601273 2022-09-01T01:42:46.601273
10378.1/1689438
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689398
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689398
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689438
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689438/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689438/
2022-08-15T07:08:05.195792 2022-08-15T07:08:05.195792
10378.1/1688695
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1688677
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1688677
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1688695
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1688695/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1688695/
2022-08-15T02:52:52.058689 2022-08-15T02:52:52.058689
10378.1/1689133
author
name Provenance Simulator
email fake.simulator@gmail.com
orcid None
organisation
name Organisation10378.1/1689059
ror None
dataset_info
name (Simulator) Provenance Simulator Fake Dataset
description Used to produce rich provenance demonstrations - no real data.
publisher
name (Simulator) CSIRO
ror None
created_date 2022-08-12
published_date 2022-08-12
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-15
    dateCreated 2022-08-15
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-15
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Provenance Simulator
    @id record/author
    @type
    • Person
    • ContactPoint
    email fake.simulator@gmail.com
    worksFor
    @id record/author/worksFor
  • name Organisation10378.1/1689059
    @type Organization
    @id record/author/worksFor
  • datePublished 2022-08-12
    identifier 10378.1/1689133
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2022-08-12
    @type Dataset
    name (Simulator) Provenance Simulator Fake Dataset
    publisher
    @id dataset/publisher
    description Used to produce rich provenance demonstrations - no real data.
    @id ./
  • name (Simulator) CSIRO
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1689133/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1689133/
2022-08-15T05:07:18.997678 2022-08-15T05:07:18.997678
10378.1/1690242
author
name Peter Baker
email peter.baker1626@gmail.com
orcid None
organisation
name ANU
ror None
dataset_info
name Coral results 2021-02-30
description Results of counterfactual model run
publisher
name University of Canberra
ror None
created_date 2021-12-25
published_date 2021-12-25
license https://creativecommons.org/licenses/by/4.0/
keywords None
version None
@graph
  • datePublished 2022-08-30
    dateCreated 2022-08-30
    @type CreativeWork
    author
    @id record/author
    about
    @id ./
    dateModified 2022-08-30
    @id ro-crate-metadata.json
    conformsTo
    @id https://w3id.org/ro/crate/1.1
  • name Peter Baker
    @id record/author
    @type
    • Person
    • ContactPoint
    email peter.baker1626@gmail.com
    worksFor
    @id record/author/worksFor
  • name ANU
    @type Organization
    @id record/author/worksFor
  • datePublished 2021-12-25
    identifier 10378.1/1690242
    license
    @id https://creativecommons.org/licenses/by/4.0/
    dateCreated 2021-12-25
    @type Dataset
    name Coral results 2021-02-30
    publisher
    @id dataset/publisher
    description Results of counterfactual model run
    @id ./
  • name University of Canberra
    @type Organization
    @id dataset/publisher
@context
  • https://w3id.org/ro/crate/1.1/context
  • @vocab https://schema.org/
bucket_name dev-rrap-storage-bucket
path datasets/10378-1-1690242/
s3_uri s3://dev-rrap-storage-bucket/datasets/10378-1-1690242/
2022-08-30T04:19:11.725601 2022-08-30T04:19:11.725601
Results

Model Registry APIs

List all registered models

Return to Top

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/entity/model/list"
endpoint = registry_api + postfix

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.get(endpoint, auth=auth())
saved_model_id = response.json()['items'][0]['id']
json_obj_in_html = json2html.convert( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully listed items. No parsing failures.
items
display_name name description documentation_url source_url id created_timestamp updated_timestamp item_category item_subtype record_type
(Simulator) Software Model 10378.1/1690423 (Simulator) Software Model 10378.1/1690423 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690423 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690423 1661997150 1661997150 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690360 (Simulator) Software Model 10378.1/1690360 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690360 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690360 1661996643 1661996643 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690328 (Simulator) Software Model 10378.1/1690328 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690328 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690328 1661996515 1661996516 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690368 (Simulator) Software Model 10378.1/1690368 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690368 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690368 1661996668 1661996668 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690370 (Simulator) Software Model 10378.1/1690370 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690370 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690370 1661996674 1661996674 ENTITY MODEL COMPLETE_ITEM
RRAP-model (repo commit id - 1234) RRAP-model-commit-1234 Example description string https://bitbucket.csiro.au/projects/MAE/repos/pybrat/readme.md https://bitbucket.csiro.au/projects/MAE/repos/pybrat/commits/824fc954c7e85c8b4b94044fc22cdbf83e365735 10378.1/1690505 1662006136 1662006136 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690394 (Simulator) Software Model 10378.1/1690394 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690394 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690394 1661996817 1661996818 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690442 (Simulator) Software Model 10378.1/1690442 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690442 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690442 1661997206 1661997206 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690374 (Simulator) Software Model 10378.1/1690374 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690374 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690374 1661996686 1661996686 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690412 (Simulator) Software Model 10378.1/1690412 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690412 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690412 1661996873 1661996873 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690391 (Simulator) Software Model 10378.1/1690391 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690391 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690391 1661996808 1661996808 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690434 (Simulator) Software Model 10378.1/1690434 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690434 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690434 1661997181 1661997181 ENTITY MODEL COMPLETE_ITEM
(Simulator) Software Model 10378.1/1690428 (Simulator) Software Model 10378.1/1690428 (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690428 https://github.com/gbrrestoration/prov-simulator https://github.com/gbrrestoration/prov-simulator 10378.1/1690428 1661997165 1661997166 ENTITY MODEL COMPLETE_ITEM
seed_items
id created_timestamp updated_timestamp item_category item_subtype record_type
10378.1/1690497 1662002567 1662002567 ENTITY MODEL SEED_ITEM
unparsable_items
total_item_count 14
complete_item_count 13
seed_item_count 1
unparsable_item_count 0
Results

Fetch registered model

From the above output copy the handle id and use it to fetch

Return to Top

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/entity/model/fetch"

params = {"id" : saved_model_id}
endpoint = registry_api + postfix

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.get(endpoint, params=params, auth=auth())

json_obj_in_html = json2html.convert( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully retrieved complete item and parsed into current data model.
item
display_name (Simulator) Software Model 10378.1/1690423
name (Simulator) Software Model 10378.1/1690423
description (Simulator) Fake software model generated by provenance simulation ID 10378.1/1690423
documentation_url https://github.com/gbrrestoration/prov-simulator
source_url https://github.com/gbrrestoration/prov-simulator
id 10378.1/1690423
created_timestamp 1661997150
updated_timestamp 1661997150
item_category ENTITY
item_subtype MODEL
record_type COMPLETE_ITEM
item_is_seed False
Results

Register a model

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/entity/model/create"
payload = {
  "display_name": "RRAP-model (repo commit id - 1234)",
  "name": "RRAP-model-commit-1234",
  "description": "Example description string",
  "documentation_url": "https://bitbucket.csiro.au/projects/MAE/repos/pybrat/readme.md",
  "source_url": "https://bitbucket.csiro.au/projects/MAE/repos/pybrat/commits/824fc954c7e85c8b4b94044fc22cdbf83e365735"
}
endpoint = registry_api + postfix 

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.post(endpoint, json=payload, auth=auth())

json_obj_in_html = json2html.convert( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully uploaded the complete item. Return item includes handle id.
created_item
display_name RRAP-model (repo commit id - 1234)
name RRAP-model-commit-1234
description Example description string
documentation_url https://bitbucket.csiro.au/projects/MAE/repos/pybrat/readme.md
source_url https://bitbucket.csiro.au/projects/MAE/repos/pybrat/commits/824fc954c7e85c8b4b94044fc22cdbf83e365735
id 10378.1/1690505
created_timestamp 1662006136
updated_timestamp 1662006136
item_category ENTITY
item_subtype MODEL
record_type COMPLETE_ITEM
Results

Delete a registered model

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/entity/model/delete"
params = { 'id': '10378.1/1687609' }
endpoint = registry_api + postfix

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.delete(endpoint, params=params, auth=auth())


json_obj_in_html = json2html.convert( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Item deleted.
Results

Dataset Template Registry APIs

Return to Top

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/entity/dataset_template/create"
payload = {
  "display_name": "string",
  "usage_information": {
    "usage_type": "PARAMETER_FILE",
    "usage_description": "string"
  },
  "structural_template": {
    "additional_description": "string",
    "file_information": [{"string":"value"},{"bees":"knees"}]
  },
  "spatial_information": {},
  # "temporal_information": {
  #   "start_time": "2022-09-01T00:34:12Z",
  #   "end_time": "2022-09-02T00:34:12Z",
  #   "interval": 1}
}

endpoint = registry_api + postfix 

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.post(endpoint, json=payload, auth=auth())

json_obj_in_html = json2html.convert( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully uploaded the complete item. Return item includes handle id.
created_item
display_name string
usage_information
usage_type PARAMETER_FILE
usage_description string
structural_template
additional_description string
file_information
folder usage path extension description parameters size_estimate size_min size_max enforce_size_constraints enforce_constraints
None None None None None None None None None False False
None None None None None None None None None False False
spatial_information
temporal_information None
id 10378.1/1690509
created_timestamp 1662006221
updated_timestamp 1662006221
item_category ENTITY
item_subtype DATASET_TEMPLATE
record_type COMPLETE_ITEM
Results

List all Dataset Templates

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/entity/dataset_template/list"

endpoint = registry_api + postfix

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.get(endpoint, auth=auth())

json_obj_in_html = json2html.convert_json_node( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully listed items. No parsing failures.
items
display_name usage_information structural_template spatial_information temporal_information id created_timestamp updated_timestamp item_category item_subtype record_type
string
usage_type PARAMETER_FILE
usage_description string
additional_description string
file_information
folder usage path extension description parameters size_estimate size_min size_max enforce_size_constraints enforce_constraints
None None None None None None None None None False False
None None None None None None None None None False False
None 10378.1/1690499 1662004102 1662004102 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690478
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690478.
None None None 10378.1/1690478 1661997363 1661997364 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690468
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690468.
None None None 10378.1/1690468 1661997313 1661997313 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690354
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690354.
None None None 10378.1/1690354 1661996597 1661996597 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690410
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690410.
None None None 10378.1/1690410 1661996867 1661996867 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690329
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690329.
None None None 10378.1/1690329 1661996519 1661996519 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690424
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690424.
None None None 10378.1/1690424 1661997153 1661997153 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690365
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690365.
None None None 10378.1/1690365 1661996658 1661996658 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690361
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690361.
None None None 10378.1/1690361 1661996646 1661996646 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690426
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690426.
None None None 10378.1/1690426 1661997159 1661997159 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690406
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690406.
None None None 10378.1/1690406 1661996854 1661996855 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690432
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690432.
None None None 10378.1/1690432 1661997178 1661997178 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690383
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690383.
None None None 10378.1/1690383 1661996714 1661996714 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690408
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690408.
None None None 10378.1/1690408 1661996861 1661996861 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690340
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690340.
None None None 10378.1/1690340 1661996554 1661996554 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690402
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690402.
None None None 10378.1/1690402 1661996842 1661996842 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690392
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690392.
None None None 10378.1/1690392 1661996811 1661996811 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690353
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690353.
None None None 10378.1/1690353 1661996594 1661996594 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
string
usage_type PARAMETER_FILE
usage_description string
additional_description string
file_information
folder usage path extension description parameters size_estimate size_min size_max enforce_size_constraints enforce_constraints
None None None None None None None None None False False
None None None None None None None None None False False
None 10378.1/1690498 1662004087 1662004087 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690339
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690339.
None None None 10378.1/1690339 1661996550 1661996550 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
(Simulator) Dataset Template 10378.1/1690348
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690348.
None None None 10378.1/1690348 1661996578 1661996579 ENTITY DATASET_TEMPLATE COMPLETE_ITEM
seed_items
unparsable_items
total_item_count 21
complete_item_count 21
seed_item_count 0
unparsable_item_count 0
Results

Fetch a specific Dataset Template

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/entity/dataset_template/fetch"
params = "?id=10378.1/1690432"
endpoint = registry_api + postfix + params

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.get(endpoint, auth=auth())

json_obj_in_html = json2html.convert_json_node( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully retrieved complete item and parsed into current data model.
item
display_name (Simulator) Dataset Template 10378.1/1690432
usage_information
usage_type GENERAL_DATA
usage_description (Simulator) Fake template used in prov simulator 10378.1/1690432.
structural_template None
spatial_information None
temporal_information None
id 10378.1/1690432
created_timestamp 1661997178
updated_timestamp 1661997178
item_category ENTITY
item_subtype DATASET_TEMPLATE
record_type COMPLETE_ITEM
item_is_seed False
Results

Agent Registry APIs

Create a Agent

Return to Top

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/agent/person/create"
payload = { 
    "display_name" : "Reef Modeller for eReef",
    "first_name" : "John",
    "last_name" : "Doe",
    "email" : "John.Doe@uni-of.au",
    "orcid" : "https://orcid.org/0000-0000-000-0000"
}
endpoint = registry_api + postfix 

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.post(endpoint, json=payload, auth=auth())

#For display only
json_obj_in_html = json2html.convert_json_node( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully uploaded the complete item. Return item includes handle id.
created_item
display_name Reef Modeller for eReef
first_name John
last_name Doe
email John.Doe@uni-of.au
orcid https://orcid.org/0000-0000-000-0000
id 10378.1/1690507
created_timestamp 1662006144
updated_timestamp 1662006144
item_category AGENT
item_subtype PERSON
record_type COMPLETE_ITEM
Results

List all Agents

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/agent/person/list"
endpoint = registry_api + postfix

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.get(endpoint, auth=auth())

json_obj_in_html = json2html.convert_json_node( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully listed items. No parsing failures.
items
display_name first_name last_name email orcid id created_timestamp updated_timestamp item_category item_subtype record_type
(Simulator) Modeller 10378.1/1690388 Joe Bloggs fake.email@gmail.com None 10378.1/1690388 1661996730 1661996730 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690363 Joe Bloggs fake.email@gmail.com None 10378.1/1690363 1661996652 1661996652 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690351 Joe Bloggs fake.email@gmail.com None 10378.1/1690351 1661996588 1661996588 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690467 Joe Bloggs fake.email@gmail.com None 10378.1/1690467 1661997310 1661997310 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690460 Joe Bloggs fake.email@gmail.com None 10378.1/1690460 1661997283 1661997283 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690375 Joe Bloggs fake.email@gmail.com None 10378.1/1690375 1661996689 1661996690 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690336 Joe Bloggs fake.email@gmail.com None 10378.1/1690336 1661996541 1661996541 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690338 Joe Bloggs fake.email@gmail.com None 10378.1/1690338 1661996547 1661996547 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690401 Joe Bloggs fake.email@gmail.com None 10378.1/1690401 1661996839 1661996839 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690390 Joe Bloggs fake.email@gmail.com None 10378.1/1690390 1661996805 1661996805 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690427 Joe Bloggs fake.email@gmail.com None 10378.1/1690427 1661997162 1661997163 AGENT PERSON COMPLETE_ITEM
Reef Modeller for eReef John Doe John.Doe@uni-of.au https://orcid.org/0000-0000-000-0000 10378.1/1690507 1662006144 1662006144 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690332 Joe Bloggs fake.email@gmail.com None 10378.1/1690332 1661996529 1661996529 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690484 Joe Bloggs fake.email@gmail.com None 10378.1/1690484 1661997388 1661997388 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690373 Joe Bloggs fake.email@gmail.com None 10378.1/1690373 1661996683 1661996683 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690385 Joe Bloggs fake.email@gmail.com None 10378.1/1690385 1661996721 1661996721 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690381 Joe Bloggs fake.email@gmail.com None 10378.1/1690381 1661996708 1661996708 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690404 Joe Bloggs fake.email@gmail.com None 10378.1/1690404 1661996848 1661996848 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690341 Joe Bloggs fake.email@gmail.com None 10378.1/1690341 1661996557 1661996557 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690409 Joe Bloggs fake.email@gmail.com None 10378.1/1690409 1661996864 1661996864 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690441 Joe Bloggs fake.email@gmail.com None 10378.1/1690441 1661997203 1661997203 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690327 Joe Bloggs fake.email@gmail.com None 10378.1/1690327 1661996512 1661996512 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690369 Joe Bloggs fake.email@gmail.com None 10378.1/1690369 1661996671 1661996671 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690359 Joe Bloggs fake.email@gmail.com None 10378.1/1690359 1661996640 1661996640 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690335 Joe Bloggs fake.email@gmail.com None 10378.1/1690335 1661996538 1661996538 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690452 Joe Bloggs fake.email@gmail.com None 10378.1/1690452 1661997247 1661997247 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690331 Joe Bloggs fake.email@gmail.com None 10378.1/1690331 1661996525 1661996526 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690422 Joe Bloggs fake.email@gmail.com None 10378.1/1690422 1661997147 1661997147 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690438 Joe Bloggs fake.email@gmail.com None 10378.1/1690438 1661997193 1661997194 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690405 Joe Bloggs fake.email@gmail.com None 10378.1/1690405 1661996851 1661996852 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690379 Joe Bloggs fake.email@gmail.com None 10378.1/1690379 1661996702 1661996702 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690382 Joe Bloggs fake.email@gmail.com None 10378.1/1690382 1661996711 1661996711 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690367 Joe Bloggs fake.email@gmail.com None 10378.1/1690367 1661996665 1661996665 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690346 Joe Bloggs fake.email@gmail.com None 10378.1/1690346 1661996572 1661996572 AGENT PERSON COMPLETE_ITEM
(Simulator) Modeller 10378.1/1690431 Joe Bloggs fake.email@gmail.com None 10378.1/1690431 1661997175 1661997175 AGENT PERSON COMPLETE_ITEM
seed_items
unparsable_items
total_item_count 35
complete_item_count 35
seed_item_count 0
unparsable_item_count 0
Results

Organistation Registry APIs

Create a Organisation

Return to Top

auth = token_manager.get_auth

# Setup postfix and endpoint
postfix = "/registry/agent/organisation/create"
payload = { 
    "display_name" : "CSIRO",
    "name" : "Commonwealth Scientific and Industrial Research Organisation",
    "ror" : "https://ror.org/03qn8fb07"
}
endpoint = registry_api + postfix 

# When making the request, use auth=auth() - this will ensure tokens are valid
# right at the point of using them, including potentially auto refreshing!
response = requests.post(endpoint, json=payload, auth=auth())

json_obj_in_html = json2html.convert_json_node( response.json())
HTML( wrap_html_table(json_obj_in_html))
status
success True
details Successfully uploaded the complete item. Return item includes handle id.
created_item
display_name CSIRO
name Commonwealth Scientific and Industrial Research Organisation
ror https://ror.org/03qn8fb07
id 10378.1/1690508
created_timestamp 1662006148
updated_timestamp 1662006148
item_category AGENT
item_subtype ORGANISATION
record_type COMPLETE_ITEM
Results